We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6be109c commit 0a119d9Copy full SHA for 0a119d9
src/bot.rs
@@ -6,6 +6,8 @@ use serenity::all::GatewayIntents;
6
7
use crate::{commands, queue::WaffleQueue};
8
9
+const PREFIX: &str = "$";
10
+
11
pub type Error = Box<dyn std::error::Error + Send + Sync>;
12
pub type Context<'a> = poise::Context<'a, Data, Error>;
13
@@ -34,7 +36,7 @@ impl WaffleBot {
34
36
commands::waffle::waffle(),
35
37
],
38
prefix_options: poise::PrefixFrameworkOptions {
- prefix: Some("!".into()),
39
+ prefix: Some(PREFIX.into()),
40
..Default::default()
41
},
42
0 commit comments