mirror of
https://github.com/fleetdm/fleet
synced 2026-04-21 21:47:20 +00:00
14 lines
491 B
Go
14 lines
491 B
Go
// Package api provides the public API for the activity bounded context.
|
|
// External code should use this package to interact with activities.
|
|
package api
|
|
|
|
// Service is the composite interface for the activity bounded context.
|
|
// It embeds all method-specific interfaces. Bootstrap returns this type.
|
|
type Service interface {
|
|
ListActivitiesService
|
|
ListHostPastActivitiesService
|
|
StreamActivitiesService
|
|
NewActivityService
|
|
CleanupExpiredActivitiesService
|
|
CleanupHostActivitiesService
|
|
}
|