ScheduleParser is an interface for schedule spec parsers that return a Schedule
| 28 | |
| 29 | // ScheduleParser is an interface for schedule spec parsers that return a Schedule |
| 30 | type ScheduleParser interface { |
| 31 | Parse(spec string) (Schedule, error) |
| 32 | } |
| 33 | |
| 34 | // Job is an interface for submitted cron jobs. |
| 35 | type Job interface { |
no outgoing calls
no test coverage detected