style(events/bot): adding a blank line on tty running

This commit is contained in:
Raphael 2026-02-15 23:41:59 +01:00
parent e43dfaf3c3
commit 1b052c92a0
No known key found for this signature in database

View file

@ -67,7 +67,7 @@ impl BotEvent for ReadyHandler {
fn event_type(&self) -> &'static str { "ready" } fn event_type(&self) -> &'static str { "ready" }
async fn on_ready(&self, ctx: &Context, ready: &Ready, commands: &[Box<dyn SlashCommand>], db: &PgPool) { async fn on_ready(&self, ctx: &Context, ready: &Ready, commands: &[Box<dyn SlashCommand>], db: &PgPool) {
println!("TTY is now running as: '{}'\n", ready.user.name); println!("\nTTY is now running as: '{}'\n", ready.user.name);
println!("Starting commands registration:"); println!("Starting commands registration:");
let cmds: Vec<CreateCommand> = commands.iter().map(|c| c.register()).collect(); let cmds: Vec<CreateCommand> = commands.iter().map(|c| c.register()).collect();