blob: 28c7b963f6d0aa897acde46863e008123a7b069f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
use super::prelude::*;
pub fn france(date: chrono::NaiveDate) -> TodayIter {
let ok = match month_day(date) {
// bastille day
(7, 14) => true,
_ => false,
};
if !ok {
return Box::new(empty());
}
Box::new(once(by_url("https://www.youtube.com/watch?v=VFevH5vP32s")))
}
|