(loc *time.Location)
| 359 | } |
| 360 | |
| 361 | func every5min(loc *time.Location) *SpecSchedule { |
| 362 | return &SpecSchedule{1 << 0, 1 << 5, all(hours), all(dom), all(months), all(dow), loc} |
| 363 | } |
| 364 | |
| 365 | func every5min5s(loc *time.Location) *SpecSchedule { |
| 366 | return &SpecSchedule{1 << 5, 1 << 5, all(hours), all(dom), all(months), all(dow), loc} |
no test coverage detected