Merge pull request #9 from ethanrusz/pog

Format pog command
This commit is contained in:
Em (Ethan) Ruszanowski 2023-03-14 13:59:58 -04:00 committed by GitHub
commit 8b8441aaf5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View file

@ -1,8 +1,8 @@
// Group all commands for registration // Group all commands for registration
mod api; mod api;
pub mod ping; pub mod ping;
pub mod pog;
pub mod profile; pub mod profile;
pub mod random; pub mod random;
pub mod register; pub mod register;
pub mod team; pub mod team;
pub mod pog;

View file

@ -16,7 +16,7 @@ pub async fn up(ctx: Context<'_>) -> Result<(), Error> {
.color(serenity::Colour::DARK_GREEN) .color(serenity::Colour::DARK_GREEN)
}) })
}) })
.await?; .await?;
Ok(()) Ok(())
} }
@ -30,6 +30,6 @@ pub async fn down(ctx: Context<'_>) -> Result<(), Error> {
.color(serenity::Colour::RED) .color(serenity::Colour::RED)
}) })
}) })
.await?; .await?;
Ok(()) Ok(())
} }