fleet/orbit/pkg/update/config_fetcher.go
gillespi314 bcdc4691bb
Enable installation and auto-updates of Nudge via Orbit (#9605)
Issue #9093 

Co-authored-by: Roberto Dip <me@roperzh.com>
Co-authored-by: Roberto Dip <dip.jesusr@gmail.com>
2023-02-10 17:03:43 -03:00

10 lines
252 B
Go

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)
}