gocron
gocron copied to clipboard
Chainable Events?
gocron.Every(1).
Monday().Wednesday().Friday().Saturday().
At("09:31").At("09:43").At("13:31").At("17:43").At("23:17").
Do(SendSMS)
This doesn't work. Only last one stays. I was wondering if we can make it chainable like above?
I am facing the same issue. I had to duplicate the line for each hour of the day. I think At
override previous calls. Hope it will be possible soon.