fleet/orbit/pkg/update/config_fetcher.go

10 lines
252 B
Go
Raw Normal View History

package update
import "github.com/fleetdm/fleet/v4/server/fleet"
// OrbitConfigFetcher allows fetching Orbit configuration.
type OrbitConfigFetcher interface {
// GetConfig returns the Orbit configuration.
GetConfig() (*fleet.OrbitConfig, error)
}