mirror of
https://github.com/empayre/fleet.git
synced 2024-11-07 09:18:59 +00:00
fd61dcab67
This PR removes unused types, code, DB tables, and associated migrations that are unused since Fleet 2.0. An existing migration was refactored, and should remain compatible with both existing and new Fleet installations.
20 lines
296 B
Go
20 lines
296 B
Go
package kolide
|
|
|
|
// service a interface stub
|
|
type Service interface {
|
|
UserService
|
|
SessionService
|
|
PackService
|
|
LabelService
|
|
QueryService
|
|
CampaignService
|
|
OsqueryService
|
|
OsqueryOptionsService
|
|
HostService
|
|
AppConfigService
|
|
InviteService
|
|
TargetService
|
|
ScheduledQueryService
|
|
StatusService
|
|
}
|