mirror of
https://github.com/fleetdm/fleet
synced 2026-04-29 09:27:18 +00:00
Issue #9093 Co-authored-by: Roberto Dip <me@roperzh.com> Co-authored-by: Roberto Dip <dip.jesusr@gmail.com>
9 lines
252 B
Go
9 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)
|
|
}
|