aboutsummaryrefslogtreecommitdiff
path: root/src/commands/today/mod.rs
diff options
context:
space:
mode:
authorNathan Perry <np@nathanperry.dev>2020-09-26 16:13:43 -0400
committerNathan Perry <np@nathanperry.dev>2020-09-26 16:13:43 -0400
commitab69488340af2133cf99d67b11e619b5cac467b5 (patch)
tree11e29658105b157c0a996ab0f6fa507ec36fbe38 /src/commands/today/mod.rs
parent23ce35dffe6b8b1fc6e5fd418db6a63922b20c86 (diff)
implement piano man
Diffstat (limited to 'src/commands/today/mod.rs')
-rw-r--r--src/commands/today/mod.rs6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/commands/today/mod.rs b/src/commands/today/mod.rs
index 50cee99..e18a01e 100644
--- a/src/commands/today/mod.rs
+++ b/src/commands/today/mod.rs
@@ -37,9 +37,10 @@ mod france;
mod shrek;
mod wednesday;
-
mod tomorrow;
+mod pianoman;
+
pub type TodayIter = Box<dyn Iterator<Item=TodayArgs>>;
#[derive(Clone, Debug, Hash, Default)]
@@ -74,8 +75,9 @@ lazy_static! {
shrek::shrek,
wednesday::wednesday,
-
tomorrow::tomorrow,
+
+ pianoman::pianoman,
];
}