diff --git a/person.go b/person.go index 499e7e6..2ea6626 100644 --- a/person.go +++ b/person.go @@ -14,6 +14,7 @@ import ( // ITask 继承这个接口的类 type ITask interface { Execute(data interface{}) ITask + Init() SetCrontab(cron string) SetLastStatus(status bool) @@ -154,6 +155,8 @@ func (person *Person) Execute() { // initTask 生成一个新任务 func initTask(conf *Config, task ITask, curl *curl2info.CURL) { + task.Init() + if curl.Crontab != "" { task.SetCrontab(curl.Crontab) } else { diff --git a/task.go b/task.go index 011b1cf..f6ced5a 100644 --- a/task.go +++ b/task.go @@ -22,6 +22,11 @@ type Task struct { proxies clinked.CircularLinked } +// Init 初始化, 会被Persion默认调用, 可以用来覆盖 +func (task *Task) Init() { + +} + // SetName 任务的名字 func (task *Task) SetName(name string) { task.name = name