blob: f46c126b97d8e88c287f420f971393bd07d55654 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
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)),
}))
}
|