package corn import ( "github.com/robfig/cron" ) func RunCorn() { c := cron.New() // 新建一个定时任务对象 c.AddFunc("0 */5 * * * ?", func() { }) c.Start() }