From b602673b94b7db41b46e309a93503052089510f1 Mon Sep 17 00:00:00 2001 From: Nathan Perry Date: Sat, 26 Sep 2020 15:16:47 -0400 Subject: add france, shrek, better debug options --- src/commands/today/shrek.rs | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 src/commands/today/shrek.rs (limited to 'src/commands/today/shrek.rs') diff --git a/src/commands/today/shrek.rs b/src/commands/today/shrek.rs new file mode 100644 index 0000000..0f16337 --- /dev/null +++ b/src/commands/today/shrek.rs @@ -0,0 +1,9 @@ +use super::prelude::*; + +pub fn shrek(date: chrono::NaiveDate) -> TodayIter { + if month_day(date) != (4, 22) { + return Box::new(empty()); + } + + Box::new(once(by_url("https://www.youtube.com/watch?v=L_jWHffIx5E"))) +} -- cgit v1.3.1