diff --git a/src/commands/mod.rs b/src/commands/mod.rs index 07440bb..a4fa0f4 100644 --- a/src/commands/mod.rs +++ b/src/commands/mod.rs @@ -1,8 +1,8 @@ // Group all commands for registration mod api; pub mod ping; +pub mod pog; pub mod profile; pub mod random; pub mod register; pub mod team; -pub mod pog; diff --git a/src/commands/pog.rs b/src/commands/pog.rs index 4f0dfbd..f8a5c00 100644 --- a/src/commands/pog.rs +++ b/src/commands/pog.rs @@ -16,7 +16,7 @@ pub async fn up(ctx: Context<'_>) -> Result<(), Error> { .color(serenity::Colour::DARK_GREEN) }) }) - .await?; + .await?; Ok(()) } @@ -30,6 +30,6 @@ pub async fn down(ctx: Context<'_>) -> Result<(), Error> { .color(serenity::Colour::RED) }) }) - .await?; + .await?; Ok(()) }