Files
2021-09-28 11:47:19 +08:00

12 lines
147 B
Go

package cron
import (
"github.com/robfig/cron"
)
func Init() {
c := cron.New()
//_ = c.AddFunc(NewTenant().ContractDeadline()())
c.Start()
}