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