clockwork
clockwork copied to clipboard
⏰ A simple and intuitive scheduling library in Go.
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...
I am new into this library and I would know if there is the possibility to implement multiple scheduled hours using `At` method. _Example_ ```go sched.Schedule().Every(2).Days().At("9:30").At("11:30").Do(something) ``` _Or_ ```go sched.Schedule().Every(2).Days().At([]string{"12:32",...
Hi, today wednesday 2019-03-06, i want execute something tomorrow (2019-03-07) and every Thursday , so i use: s.Schedule().Every().Thursday().Do(dosomething) but the console log says Scheduled for 2019-03-14, that is the next...