-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Question: Multiple At #11
Comments
Looks cool, shouldn't be too hard to implement, you can try it and open a PR if you want :) |
Is this issue still open? |
@unishubh it is tagged as open, are you working on a pr or waiting for whiteshtef to add it in? |
@pizzalord22 it is still open. Is use of multiple I personally use sched.Schedule().Every().Day().At("xxx").Do(foo)
sched.Schedule().Every().Day().At("yyy").Do(foo) because it seems more readable than sched.Schedule().Every().Day().At("xxx").At("yyy").Do(foo) If you really want it as a one-liner, it shouldn't be too hard to implement, |
@whiteShtef i would go for readability, since keeping things readable and as simple as possible makes it easier to implement new things. that being said it might be nice to have multiple function ran in the same row in a certrain order. |
I am new into this library and I would know if there is the possibility to implement multiple scheduled hours using
At
method.Example
Or
The text was updated successfully, but these errors were encountered: