blob: 790167a26f79044e8482554d568b6a3eea1343ed (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
use super::prelude::*;
pub fn shrek(date: chrono::NaiveDateTime) -> TodayIter {
if month_day(date) != (10, 7) {
return Box::new(empty());
}
Box::new(once(by_url("https://www.youtube.com/watch?v=tMINTOSZhDo")))
}
|