9 lines
186 B
Go
9 lines
186 B
Go
package common
|
|
|
|
import (
|
|
commonParams "github.com/cloudbase/garm-provider-common/params"
|
|
)
|
|
|
|
type ToolsGetter interface {
|
|
GetTools() ([]commonParams.RunnerApplicationDownload, error)
|
|
}
|