| 9 | ) |
| 10 | |
| 11 | type CronJobService interface { |
| 12 | Preempt(ctx context.Context) (domain.Job, error) |
| 13 | ResetNextTime(ctx context.Context, dj domain.Job) error |
| 14 | } |
| 15 | |
| 16 | type cronJobService struct { |
| 17 | repo repository.CronJobRepository |
no outgoing calls
no test coverage detected