diff options
| author | Nathan Perry <np@nathanperry.dev> | 2024-08-16 01:46:17 -0400 |
|---|---|---|
| committer | Nathan Perry <np@nathanperry.dev> | 2024-08-16 01:46:17 -0400 |
| commit | f39b1607b54073646b8ebae8852000706db885ad (patch) | |
| tree | 8033b4460593fb729f6aecc1c7deba84d952f3f0 /src/commands/mod.rs | |
| parent | a435a926689b0b597caa1c724a91694f74dec778 (diff) | |
fix required command options
Diffstat (limited to 'src/commands/mod.rs')
| -rw-r--r-- | src/commands/mod.rs | 3 |
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()); |
