fix cron time

This commit is contained in:
yanweidong
2026-02-09 17:39:11 +08:00
parent 96b79a34ef
commit b99ab8f415

View File

@@ -15,7 +15,7 @@ func Boot() {
scheduler := cron.New()
// 每天运行3次来更新数据
scheduler.AddFunc("30 20 * * *", func() {
scheduler.AddFunc("30 18 * * *", func() {
updateTask()
})
scheduler.Start()