feat(api): remove cron second support

This commit is contained in:
Anthony Lapenna
2019-10-08 14:39:37 +13:00
parent 9aa52a6975
commit d717ad947b

View File

@@ -13,7 +13,7 @@ type JobScheduler struct {
// NewJobScheduler initializes a new service
func NewJobScheduler() *JobScheduler {
return &JobScheduler{
cron: cron.New(cron.WithSeconds()),
cron: cron.New(),
}
}