wisski-cloud-distillery/internal/dis/component/cron.go
2022-12-07 10:30:48 +01:00

16 lines
275 B
Go

package component
import (
"context"
)
// Cronable is a component that implements a cron method
type Cronable interface {
Component
// Name of the cron task being performed
TaskName() string
// Cron is called to run this cron task
Cron(ctx context.Context) error
}