garm/runner/runner.go

16 lines
220 B
Go
Raw Normal View History

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
}