Create crond scheduler and dependencies and store to disk
This commit is contained in:
8
scheduler/errors.go
Normal file
8
scheduler/errors.go
Normal file
@@ -0,0 +1,8 @@
|
||||
package scheduler
|
||||
|
||||
import "errors"
|
||||
|
||||
var ErrBadCron = errors.New("bad cron input detected")
|
||||
var ErrBadRunner = errors.New("bad cron runner")
|
||||
var ErrJobNotFound = errors.New("bad job name given")
|
||||
var ErrDuplicateJob = errors.New("duplicate job name given")
|
||||
Reference in New Issue
Block a user