diff --git a/src/commands/ping.rs b/src/commands/ping.rs index d8f626e..5b9f031 100644 --- a/src/commands/ping.rs +++ b/src/commands/ping.rs @@ -6,6 +6,6 @@ use serenity::prelude::Context; #[command] pub async fn ping(ctx: &Context, msg: &Message) -> CommandResult { msg.channel_id.say(&ctx.http, "pong!").await?; - + Ok(()) }