mirror of
https://github.com/empayre/fleet.git
synced 2024-11-07 09:18:59 +00:00
c5f0e5a6b4
- Osquery Options (to be renamed to Options after current Options removed) - Labels - Queries - Packs
21 lines
328 B
Go
21 lines
328 B
Go
package kolide
|
|
|
|
// service a interface stub
|
|
type Service interface {
|
|
UserService
|
|
SessionService
|
|
PackService
|
|
LabelService
|
|
QueryService
|
|
CampaignService
|
|
OsqueryService
|
|
OsqueryOptionsService
|
|
HostService
|
|
AppConfigService
|
|
InviteService
|
|
TargetService
|
|
ScheduledQueryService
|
|
OptionService
|
|
FileIntegrityMonitoringService
|
|
}
|