16 lines
220 B
Go
16 lines
220 B
Go
|
package crontabex
|
||
|
|
||
|
import "time"
|
||
|
|
||
|
// ICrontab 时间到
|
||
|
type ICrontab interface {
|
||
|
TimeIsUp() bool
|
||
|
NextTime() time.Time
|
||
|
Set(...interface{}) // 默认不忽略
|
||
|
Get(...interface{})
|
||
|
}
|
||
|
|
||
|
// Crontab
|
||
|
type Crontab struct {
|
||
|
}
|