refactor(main): formatting using rustfmt

This commit is contained in:
Raphael 2026-02-14 00:47:07 +01:00
parent 0869d04b30
commit c1af40861a
No known key found for this signature in database

View file

@ -35,18 +35,18 @@ async fn main() {
println!("✅ | Migrations applied\n"); println!("✅ | Migrations applied\n");
let intents: GatewayIntents = GatewayIntents::AUTO_MODERATION_CONFIGURATION let intents: GatewayIntents = GatewayIntents::AUTO_MODERATION_CONFIGURATION
| GatewayIntents::AUTO_MODERATION_EXECUTION | GatewayIntents::AUTO_MODERATION_EXECUTION
| GatewayIntents::DIRECT_MESSAGE_REACTIONS | GatewayIntents::DIRECT_MESSAGE_REACTIONS
| GatewayIntents::DIRECT_MESSAGES | GatewayIntents::DIRECT_MESSAGES
| GatewayIntents::GUILD_INVITES | GatewayIntents::GUILD_INVITES
| GatewayIntents::GUILD_MEMBERS | GatewayIntents::GUILD_MEMBERS
| GatewayIntents::GUILD_MESSAGE_REACTIONS | GatewayIntents::GUILD_MESSAGE_REACTIONS
| GatewayIntents::GUILD_MESSAGE_TYPING | GatewayIntents::GUILD_MESSAGE_TYPING
| GatewayIntents::GUILD_MESSAGES | GatewayIntents::GUILD_MESSAGES
| GatewayIntents::GUILD_MODERATION | GatewayIntents::GUILD_MODERATION
| GatewayIntents::GUILD_VOICE_STATES | GatewayIntents::GUILD_VOICE_STATES
| GatewayIntents::GUILDS | GatewayIntents::GUILDS
| GatewayIntents::MESSAGE_CONTENT; | GatewayIntents::MESSAGE_CONTENT;
let bot: Bot = Bot { let bot: Bot = Bot {
commands: commands::import(), commands: commands::import(),