Add bin using crate cron.
This commit is contained in:
parent
601a0ed971
commit
7d29ac05e5
1 changed files with 13 additions and 0 deletions
13
src/bin/using-crate-cron.rs
Normal file
13
src/bin/using-crate-cron.rs
Normal 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);
|
||||
}
|
||||
}
|
Loading…
Add table
Reference in a new issue