mvniekerk / tokio-cron-scheduler

Schedule tasks on Tokio using cron-like annotation
Apache License 2.0
473 stars 58 forks source link

hi, can you support some shortcut to create cron expresions, such as daily? #6

Closed vidyli closed 2 years ago

vidyli commented 2 years ago

please check cron_clock

mvniekerk commented 2 years ago

Thanks @vidyli for the bug report. The cron crate (https://github.com/zslayton/cron) I'm using for parsing the cron statements supports '@hourly', '@daily', '@weekly', '@monthly' and '@yearly'. As I'm using the upstream parser, I'll rather defer you to them if you've got another use case.

mvniekerk commented 2 years ago

I've updated the README to reflect this