feat(api): remove cron second support

pull/3240/head
Anthony Lapenna 2019-10-08 14:39:37 +13:00
parent 9aa52a6975
commit d717ad947b
1 changed files with 1 additions and 1 deletions

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(),
}
}