16 lines
275 B
Go
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
|
|
}
|