refactor(commands/mod): format using cargo fmt

This commit is contained in:
Raphael 2026-02-13 12:12:36 +01:00
parent dbe1abd2aa
commit 3ed80a5626
No known key found for this signature in database

View file

@ -10,8 +10,12 @@ pub trait SlashCommand: Send + Sync {
fn register(&self) -> CreateCommand;
async fn run(&self, ctx: &Context, command: &CommandInteraction, database: &PgPool)
-> Result<(), serenity::Error>;
async fn run(
&self,
ctx: &Context,
command: &CommandInteraction,
database: &PgPool,
) -> Result<(), serenity::Error>;
}
pub struct CommandEntry {