blob: a48354147ff553587f2946ccda90a66c1a5f9511 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
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)),
}))
}
|