Files
Sillyv2/core/cron.go
T
cdle 643ecd0f9c x
2023-07-05 17:19:56 +08:00

11 lines
143 B
Go

package core
import cron "github.com/robfig/cron/v3"
var CRON *cron.Cron
func init() {
CRON = cron.New(cron.WithSeconds())
CRON.Start()
}