From c1af40861a161dd89607071fcb088730530ca59a Mon Sep 17 00:00:00 2001 From: Raphael Date: Sat, 14 Feb 2026 00:47:07 +0100 Subject: [PATCH] refactor(main): formatting using rustfmt --- src/main.rs | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/src/main.rs b/src/main.rs index 1a798cb..ac05a5f 100644 --- a/src/main.rs +++ b/src/main.rs @@ -35,18 +35,18 @@ async fn main() { println!("✅ | Migrations applied\n"); let intents: GatewayIntents = GatewayIntents::AUTO_MODERATION_CONFIGURATION - | GatewayIntents::AUTO_MODERATION_EXECUTION - | GatewayIntents::DIRECT_MESSAGE_REACTIONS - | GatewayIntents::DIRECT_MESSAGES - | GatewayIntents::GUILD_INVITES - | GatewayIntents::GUILD_MEMBERS - | GatewayIntents::GUILD_MESSAGE_REACTIONS - | GatewayIntents::GUILD_MESSAGE_TYPING - | GatewayIntents::GUILD_MESSAGES - | GatewayIntents::GUILD_MODERATION - | GatewayIntents::GUILD_VOICE_STATES - | GatewayIntents::GUILDS - | GatewayIntents::MESSAGE_CONTENT; + | GatewayIntents::AUTO_MODERATION_EXECUTION + | GatewayIntents::DIRECT_MESSAGE_REACTIONS + | GatewayIntents::DIRECT_MESSAGES + | GatewayIntents::GUILD_INVITES + | GatewayIntents::GUILD_MEMBERS + | GatewayIntents::GUILD_MESSAGE_REACTIONS + | GatewayIntents::GUILD_MESSAGE_TYPING + | GatewayIntents::GUILD_MESSAGES + | GatewayIntents::GUILD_MODERATION + | GatewayIntents::GUILD_VOICE_STATES + | GatewayIntents::GUILDS + | GatewayIntents::MESSAGE_CONTENT; let bot: Bot = Bot { commands: commands::import(),