From 664f92e9bac534b6c44924bb84ea2ce986031ca2 Mon Sep 17 00:00:00 2001 From: Ethan Ruszanowski Date: Tue, 14 Mar 2023 13:59:27 -0400 Subject: [PATCH] Format pog command --- src/commands/mod.rs | 2 +- src/commands/pog.rs | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) 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(()) }