package job import "github.com/robfig/cron/v3" func init() { c := cron.New() c.AddJob("*/5 * * * * *", new(HelloJob)) }