From 87d92a93d8493e0264c381aa005bf9feaef976ed Mon Sep 17 00:00:00 2001 From: Nathan Perry Date: Fri, 25 Sep 2020 21:37:16 -0400 Subject: reorganize 'today' --- src/commands/today/tomorrow.rs | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 src/commands/today/tomorrow.rs (limited to 'src/commands/today/tomorrow.rs') diff --git a/src/commands/today/tomorrow.rs b/src/commands/today/tomorrow.rs new file mode 100644 index 0000000..eb19250 --- /dev/null +++ b/src/commands/today/tomorrow.rs @@ -0,0 +1,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)) + } + ) + ) +} -- cgit v1.3.1