Add bin using crate croner.

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

View file

@ -0,0 +1,18 @@
use chrono::Utc;
use croner::Cron;
fn main() {
// Parse a cron expression to find the next occurrence at 00:00 on Friday
let cron = Cron::new("0 0 * * FRI")
.parse()
.expect("Successful parsing");
// Get the next occurrence from the current time, excluding the current time
let next = cron.find_next_occurrence(&Utc::now(), false).unwrap();
println!(
"Pattern \"{}\" will match next at {}",
cron.pattern.to_string(),
next
);
}