mirror of
https://github.com/AlistGo/alist.git
synced 2025-04-25 23:04:03 +08:00
15 lines
237 B
Go
15 lines
237 B
Go
package bootstrap
|
|
|
|
import (
|
|
"github.com/Xhofe/alist/conf"
|
|
"github.com/robfig/cron/v3"
|
|
log "github.com/sirupsen/logrus"
|
|
)
|
|
|
|
// InitCron init cron
|
|
func InitCron() {
|
|
log.Infof("init cron...")
|
|
conf.Cron = cron.New()
|
|
conf.Cron.Start()
|
|
}
|