diff --git a/src/commands.rs b/src/commands.rs index 68070e2..0bd115e 100644 --- a/src/commands.rs +++ b/src/commands.rs @@ -1,4 +1,4 @@ -use serenity::framework::standard::macros::{group}; +use serenity::framework::standard::macros::group; pub mod ping; use ping::*; diff --git a/src/events.rs b/src/events.rs index 4f691a3..a85b078 100644 --- a/src/events.rs +++ b/src/events.rs @@ -15,9 +15,9 @@ impl EventHandler for Handler { // In this case, just print what the current user's username is. async fn ready(&self, ctx: Context, ready: Ready) { println!("{} is connected!", ready.user.name); - for g_id in ctx.cache.guilds() { - let g = ctx.cache.guild(g_id).expect("Unable to fetch guild"); - println!("Initializing {}...", g.name); - } + for g_id in ctx.cache.guilds() { + let g = ctx.cache.guild(g_id).expect("Unable to fetch guild"); + println!("Initializing {}...", g.name); + } } } diff --git a/src/main.rs b/src/main.rs index fa08f29..2d82bb7 100644 --- a/src/main.rs +++ b/src/main.rs @@ -2,8 +2,8 @@ use std::env; +use serenity::framework::standard::StandardFramework; use serenity::prelude::*; -use serenity::framework::standard::{StandardFramework}; // This trait adds the `register_songbird` and `register_songbird_with` methods // to the client builder below, making it easy to install this voice client. @@ -24,28 +24,26 @@ async fn main() { let token = env::var("DISCORD_TOKEN").expect("Expected a token in the environment"); // Set gateway intents, which decides what events the bot will be notified about let intents = GatewayIntents::GUILD_MESSAGES - | GatewayIntents::GUILD_VOICE_STATES - | GatewayIntents::GUILD_MESSAGE_REACTIONS - | GatewayIntents::GUILD_MESSAGE_TYPING + | GatewayIntents::GUILD_VOICE_STATES + | GatewayIntents::GUILD_MESSAGE_REACTIONS + | GatewayIntents::GUILD_MESSAGE_TYPING | GatewayIntents::DIRECT_MESSAGES - | GatewayIntents::DIRECT_MESSAGE_REACTIONS - | GatewayIntents::DIRECT_MESSAGE_TYPING - | GatewayIntents::MESSAGE_CONTENT; + | GatewayIntents::DIRECT_MESSAGE_REACTIONS + | GatewayIntents::DIRECT_MESSAGE_TYPING + | GatewayIntents::MESSAGE_CONTENT; let framework = StandardFramework::new() - .configure(|c| c.prefix("ALAN! ")) - .group(&GENERAL_GROUP); - - let mut client = - Client::builder(&token, intents) - .event_handler(Handler) - .framework(framework) - .register_songbird() - .await.expect("Err creating client"); + .configure(|c| c.prefix("ALAN! ")) + .group(&GENERAL_GROUP); + + let mut client = Client::builder(&token, intents) + .event_handler(Handler) + .framework(framework) + .register_songbird() + .await + .expect("Err creating client"); if let Err(why) = client.start().await { - println!("Client error: {:?} <-- This is a test clause -->", why); + println!("Client error: {:?}", why); } } - -