gadmjob.go 375 B

123456789101112
  1. package cronjob
  2. import (
  3. "github.com/robfig/cron/v3"
  4. )
  5. // NewWithSeconds newWithSeconds returns a Cron with the seconds field enabled.
  6. func NewWithSeconds() *cron.Cron {
  7. secondParser := cron.NewParser(cron.Second | cron.Minute |
  8. cron.Hour | cron.Dom | cron.Month | cron.DowOptional | cron.Descriptor)
  9. return cron.New(cron.WithParser(secondParser), cron.WithChain())
  10. }