From af148fc2bf16320d27633af89c173cd907409565 Mon Sep 17 00:00:00 2001 From: Nathan Perry Date: Mon, 21 Sep 2020 21:55:51 -0400 Subject: 'today' command --- src/commands/mod.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src/commands/mod.rs') diff --git a/src/commands/mod.rs b/src/commands/mod.rs index 74cdaf5..705d697 100644 --- a/src/commands/mod.rs +++ b/src/commands/mod.rs @@ -16,6 +16,7 @@ pub use self::{ playback::*, sound_levels::*, roll::{roll, ROLL_COMMAND}, + today::{today, TODAY_COMMAND}, }; #[cfg(feature = "diesel")] pub use self::meme::*; @@ -23,8 +24,9 @@ pub use self::meme::*; pub(crate) mod playback; pub(crate) mod sound_levels; pub(crate) mod roll; -mod help; +pub(crate) mod today; +mod help; group!({ name: "general", @@ -33,6 +35,7 @@ group!({ }, commands: [ roll, + today, ], }); -- cgit v1.3.1