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/halloween.rs | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 src/commands/today/halloween.rs (limited to 'src/commands/today/halloween.rs') diff --git a/src/commands/today/halloween.rs b/src/commands/today/halloween.rs new file mode 100644 index 0000000..847da8e --- /dev/null +++ b/src/commands/today/halloween.rs @@ -0,0 +1,20 @@ +use super::prelude::*; + +lazy_static! { + static ref HALLOWEEN: Vec = vec![ + TodayArgs { + url: "https://www.youtube.com/watch?v=-1dSY6ZuXEY", + ..Default::default() + }, + ]; +} + +pub fn halloween(date: chrono::NaiveDate) -> TodayIter { + if (10, 31) != month_day(date) { + return Box::new(empty()); + } + + Box::new( + HALLOWEEN.iter().cloned() + ) +} -- cgit v1.3.1