aboutsummaryrefslogtreecommitdiff
path: root/src/commands/today/tomorrow.rs
blob: ad5c37d20ddc8ccf3cd4fa8c853ee1a81d774843 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
use super::prelude::*;

pub fn tomorrow(_date: chrono::NaiveDateTime) -> TodayIter {
    Box::new(
        once(
            TodayArgs {
                url: "https://www.youtube.com/watch?v=W78AGkm_AtE",
                start: None,
                end: Some(Duration::seconds(6))
            }
        )
    )
}