blob: 30d4f79e8091c5b952d53e908fe2f5b5c9179b65 (
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::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)),
}
)
)
}
|