diff --git a/src/commands/mod.rs b/src/commands/mod.rs index 0cb6500..dce8945 100644 --- a/src/commands/mod.rs +++ b/src/commands/mod.rs @@ -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 {