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

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