aboutsummaryrefslogtreecommitdiff
path: root/src/commands/today/shrek.rs
blob: b2f24a14716c84bac11f04eb0797debf28ca251e (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) != (4, 22) {
        return Box::new(empty());
    }

    Box::new(once(by_url("https://www.youtube.com/watch?v=L_jWHffIx5E")))
}