aboutsummaryrefslogtreecommitdiff
path: root/src/commands/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/commands/mod.rs')
-rw-r--r--src/commands/mod.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/commands/mod.rs b/src/commands/mod.rs
index 1ad4a59..b7a8378 100644
--- a/src/commands/mod.rs
+++ b/src/commands/mod.rs
@@ -20,7 +20,8 @@ pub(crate) mod today;
pub use self::meme::*;
pub fn commands() -> Vec<poise::Command<crate::PoiseData, anyhow::Error>> {
- let mut commands = vec![sound_levels::mute(), sound_levels::unmute(), roll::roll(), help()];
+ let mut commands =
+ vec![sound_levels::mute(), sound_levels::unmute(), roll::roll(), today::today(), help()];
commands.extend(playback::commands());