From 87d92a93d8493e0264c381aa005bf9feaef976ed Mon Sep 17 00:00:00 2001 From: Nathan Perry Date: Fri, 25 Sep 2020 21:37:16 -0400 Subject: reorganize 'today' --- src/commands/today/prelude.rs | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 src/commands/today/prelude.rs (limited to 'src/commands/today/prelude.rs') diff --git a/src/commands/today/prelude.rs b/src/commands/today/prelude.rs new file mode 100644 index 0000000..d0570fd --- /dev/null +++ b/src/commands/today/prelude.rs @@ -0,0 +1,31 @@ +pub use std::iter::{ + once, + empty, +}; + +pub use lazy_static::lazy_static; + +pub use chrono::{ + Datelike, + Duration, +}; + +pub use super::{ + TodayArgs, + TodayIter, +}; + + +#[inline] +pub fn month_day(date: chrono::NaiveDate) -> (u32, u32) { + (date.month(), date.day()) +} + +pub const fn by_url(url: &'static str) -> TodayArgs { + TodayArgs { + url, + + start: None, + end: None, + } +} -- cgit v1.3.1