crontabex/crontab.go

16 lines
220 B
Go
Raw Normal View History

2019-07-18 10:38:14 +00:00
package crontabex
import "time"
// ICrontab 时间到
type ICrontab interface {
TimeIsUp() bool
NextTime() time.Time
Set(...interface{}) // 默认不忽略
Get(...interface{})
}
// Crontab
type Crontab struct {
}