1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
# cronox ## Setup ```bash cargo add cronox ``` ## Usage ```rs let mut scheduler = Scheduler::new(); scheduler.call(async || {}).every_second(); scheduler.call(async || {}).every_five_seconds(); scheduler.call(async || {}).every_minute(); scheduler.await; ```