mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 08:55:24 +00:00
bcdc4691bb
Issue #9093 Co-authored-by: Roberto Dip <me@roperzh.com> Co-authored-by: Roberto Dip <dip.jesusr@gmail.com>
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)
|
|
}
|