mirror of
https://github.com/empayre/fleet.git
synced 2024-11-07 09:18:59 +00:00
e452cc6a8a
- Add endpoints for osquery to register and continue a carve. - Implement client functionality for retrieving carve details and contents in fleetctl. - Add documentation on using file carving with Fleet. Addresses kolide/fleet#1714
21 lines
310 B
Go
21 lines
310 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
|
|
CarveService
|
|
}
|