garm/runner/runner.go
Gabriel Adrian Samfira d48130e872 Initial commit
Added some config structures
2022-04-13 16:47:42 +00:00

15 lines
220 B
Go

package runner
import (
"runner-manager/config"
"runner-manager/runner/common"
"github.com/google/go-github/github"
)
type Runner struct {
ghc *github.Client
config *config.Config
pools []common.PoolManager
}