diff --git a/src/bin/test_discord.rs b/src/bin/test_discord.rs index 3790bd0..6daa5f0 100644 --- a/src/bin/test_discord.rs +++ b/src/bin/test_discord.rs @@ -30,7 +30,7 @@ async fn main() { // Adjust intents as needed let intents = GatewayIntents::GUILD_MESSAGES | GatewayIntents::GUILDS; - let mut client = Client::builder(&token, intents) + let mut client = Client::builder(token, intents) .event_handler(Handler) .framework(StandardFramework::new()) .await