🎨 优化定时任务

This commit is contained in:
李寻欢 2023-09-21 17:36:31 +08:00
parent 744fb7b1d0
commit 40e4dc48c6

View File

@ -16,7 +16,7 @@ func InitTasks() {
_, _ = s.Every(1).Day().At("09:30").Do(yesterday)
// 每小时更新一次好友列表
_, _ = s.Every(1).Minute().Do(syncFriends)
_, _ = s.Every(1).Hour().Do(syncFriends)
// 开启定时任务
s.StartAsync()