clockwork icon indicating copy to clipboard operation
clockwork copied to clipboard

fixed some TODO's

Open pizzalord22 opened this issue 6 years ago • 0 comments

the scheduler now returns an error instead of trowing a panic. This makes it the users responsibility to check for scheduling errors.

checking for errors can be done in the following way.

err := sched.Run()
if err != nil {
    log.Println(err)
}

pizzalord22 avatar Nov 05 '19 13:11 pizzalord22