alist/bootstrap/cron.go

15 lines
237 B
Go
Raw Normal View History

2021-10-27 14:45:36 +00:00
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()
}