diff options
Diffstat (limited to 'src/commands/today/nov_5.rs')
| -rw-r--r-- | src/commands/today/nov_5.rs | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/commands/today/nov_5.rs b/src/commands/today/nov_5.rs new file mode 100644 index 0000000..30d4f79 --- /dev/null +++ b/src/commands/today/nov_5.rs @@ -0,0 +1,17 @@ +use super::prelude::*; + +pub fn nov_5(date: chrono::NaiveDate) -> TodayIter { + if (11, 5) != month_day(date) { + return Box::new(empty()); + } + + Box::new( + once( + TodayArgs { + url: "https://www.youtube.com/watch?v=LF1951pENdk", + start: Some(Duration::seconds(25)), + end: Some(Duration::seconds(39)), + } + ) + ) +} |
