diff options
| author | Nathan Perry <np@nathanperry.dev> | 2020-09-21 21:55:51 -0400 |
|---|---|---|
| committer | Nathan Perry <np@nathanperry.dev> | 2020-09-21 21:55:51 -0400 |
| commit | af148fc2bf16320d27633af89c173cd907409565 (patch) | |
| tree | d2be3fd25ec1fce16e8b04f8a6b9faf1cfeb2243 /src/commands/mod.rs | |
| parent | 16e660f5cd3787e587a5d082f57ab9d900aee0ca (diff) | |
'today' command
Diffstat (limited to 'src/commands/mod.rs')
| -rw-r--r-- | src/commands/mod.rs | 5 |
1 files changed, 4 insertions, 1 deletions
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, ], }); |
