diff --git a/cron.go b/cron.go index f4484ec..9eea5f7 100644 --- a/cron.go +++ b/cron.go @@ -13,3 +13,11 @@ type Cron interface { // 任务处理 Handle(time.Time) error } + +type CronBase struct { + Controller +} + +func (CronBase) Handle(t time.Time) error { + return nil +}