Add bin using crate cron.

This commit is contained in:
Erik Nordstrøm 2025-02-22 19:12:58 +01:00
parent 601a0ed971
commit 7d29ac05e5

View file

@ -0,0 +1,13 @@
use chrono::Utc;
use cron::Schedule;
use std::str::FromStr;
fn main() {
// sec min hour day of month month day of week year
let expression = "0 30 9,12,15 1,15 May-Aug Mon,Wed,Fri 2018/2";
let schedule = Schedule::from_str(expression).unwrap();
println!("Upcoming fire times:");
for datetime in schedule.upcoming(Utc).take(10) {
println!("-> {}", datetime);
}
}