This commit is contained in:
shoopea 2020-01-16 15:46:42 +08:00
parent 489f969827
commit d296513065

View File

@ -16,7 +16,7 @@ func startCron() *cron.Cron {
c.AddFunc("02 1,3,5,9,11,13,17,19,21 * * *", cronGetHammerTime)
c.AddFunc("10 7,15,23 * * *", cronGetHammerTime)
c.AddFunc("13 3,7,11,15,19,23 * * *", cronTribute)
c.AddFunc("@every 1min", cronSaveClients)
c.AddFunc("@every 1m", cronSaveClients)
c.Start()
return c
}