aboutsummaryrefslogtreecommitdiff
path: root/src/commands/today/nov_5.rs
blob: b4eafc9d52d2f431270563d603c07135aa97c4ab (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use super::prelude::*;

pub fn nov_5(date: chrono::NaiveDateTime) -> 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)),
            }
        )
    )
}