aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNathan Perry <np@nathanperry.dev>2024-08-17 07:25:02 -0400
committerNathan Perry <np@nathanperry.dev>2024-08-17 07:25:27 -0400
commit3e75019fcd70f59403e51a275ee83184854b3266 (patch)
tree529bb39da0f823e2973ff6b2b2773f8bc4fb3518
parentb562d3a7be9fb47e11c3e4fa86ee8e5a142b6ff6 (diff)
today: prefix command
-rw-r--r--src/commands/today/mod.rs2
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)]