mirror of
https://github.com/fleetdm/fleet
synced 2026-04-21 21:47:20 +00:00
9 lines
317 B
Go
9 lines
317 B
Go
package api
|
|
|
|
import "context"
|
|
|
|
// CleanupHostActivitiesService cleans up activity_host_past rows when hosts are deleted.
|
|
type CleanupHostActivitiesService interface {
|
|
// CleanupHostActivities removes activity_host_past rows for the given host IDs.
|
|
CleanupHostActivities(ctx context.Context, hostIDs []uint) error
|
|
}
|