From d296513065f0b719b30328e5d57cb8f61cbefd54 Mon Sep 17 00:00:00 2001 From: shoopea Date: Thu, 16 Jan 2020 15:46:42 +0800 Subject: [PATCH] test --- cron.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cron.go b/cron.go index f87dbfb..24a1bbb 100644 --- a/cron.go +++ b/cron.go @@ -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 }