aboutsummaryrefslogtreecommitdiff
path: root/src/commands/today/tomorrow.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/commands/today/tomorrow.rs')
-rw-r--r--src/commands/today/tomorrow.rs13
1 files changed, 13 insertions, 0 deletions
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))
+ }
+ )
+ )
+}