mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 17:05:18 +00:00
10 lines
252 B
Go
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)
|
||
|
}
|