From 3004d9944425f9e0f3bed360e5560eecf2f65dfc Mon Sep 17 00:00:00 2001 From: Raphael Date: Thu, 12 Feb 2026 16:27:40 +0100 Subject: [PATCH] refactor(src/main): passing the rustfmt --- src/main.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main.rs b/src/main.rs index ac08ee3..ce04c6f 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,8 +1,8 @@ mod commands; mod events; -use events::Bot; use commands::all_commands; +use events::Bot; use serenity::all::*; use std::env; @@ -10,8 +10,8 @@ use std::env; async fn main() { dotenvy::dotenv().ok(); - let token: String = env::var("DISCORD_TOKEN") - .expect("❌ | DISCORD_TOKEN missing (check the env file)"); + let token: String = + env::var("DISCORD_TOKEN").expect("❌ | DISCORD_TOKEN missing (check the env file)"); let intents: GatewayIntents = GatewayIntents::empty();