8 lines
82 B
Go
8 lines
82 B
Go
|
package cron
|
||
|
|
||
|
import "context"
|
||
|
|
||
|
type Cron interface {
|
||
|
Run(ctx context.Context)
|
||
|
}
|