From 831117d440f62ce7a3c9d094e1358731fae398e9 Mon Sep 17 00:00:00 2001 From: "DavidCrompton1192@gmail.com" Date: Mon, 6 Mar 2023 19:29:29 -0500 Subject: [PATCH] Fmt fix (intentional) --- src/commands/ping.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(()) }