aboutsummaryrefslogtreecommitdiff
path: root/src/commands/today/shrek.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/commands/today/shrek.rs')
-rw-r--r--src/commands/today/shrek.rs9
1 files changed, 9 insertions, 0 deletions
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")))
+}