aboutsummaryrefslogtreecommitdiff
path: root/src/commands/today/putin.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/commands/today/putin.rs')
-rw-r--r--src/commands/today/putin.rs9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/commands/today/putin.rs b/src/commands/today/putin.rs
new file mode 100644
index 0000000..790167a
--- /dev/null
+++ b/src/commands/today/putin.rs
@@ -0,0 +1,9 @@
+use super::prelude::*;
+
+pub fn shrek(date: chrono::NaiveDateTime) -> TodayIter {
+ if month_day(date) != (10, 7) {
+ return Box::new(empty());
+ }
+
+ Box::new(once(by_url("https://www.youtube.com/watch?v=tMINTOSZhDo")))
+}