diff options
| author | Nathan Perry <np@nathanperry.dev> | 2024-08-17 07:25:02 -0400 |
|---|---|---|
| committer | Nathan Perry <np@nathanperry.dev> | 2024-08-17 07:25:27 -0400 |
| commit | 3e75019fcd70f59403e51a275ee83184854b3266 (patch) | |
| tree | 529bb39da0f823e2973ff6b2b2773f8bc4fb3518 | |
| parent | b562d3a7be9fb47e11c3e4fa86ee8e5a142b6ff6 (diff) | |
today: prefix command
| -rw-r--r-- | src/commands/today/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/commands/today/mod.rs b/src/commands/today/mod.rs index 6f4dcf6..22e006c 100644 --- a/src/commands/today/mod.rs +++ b/src/commands/today/mod.rs @@ -69,7 +69,7 @@ lazy_static! { ]; } -#[poise::command(slash_command, prefix_command, guild_only)] +#[poise::command(prefix_command, guild_only)] pub async fn today(ctx: PoiseContext<'_>, #[rest] _rest: Option<String>) -> anyhow::Result<()> { let today = { #[allow(unused_mut)] |
