summaryrefslogtreecommitdiff
path: root/src/commands/general/bing.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/commands/general/bing.rs')
-rw-r--r--src/commands/general/bing.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/commands/general/bing.rs b/src/commands/general/bing.rs
index d55d8ee..d58404e 100644
--- a/src/commands/general/bing.rs
+++ b/src/commands/general/bing.rs
@@ -1,10 +1,10 @@
-use crate::Context;
+use crate::{Context, Error};
use eyre::Result;
/// Make sure the wie is alive
#[poise::command(prefix_command)]
-pub async fn bing(ctx: Context<'_>) -> Result<()> {
+pub async fn bing(ctx: Context<'_>) -> Result<(), Error> {
ctx.say("bong!").await?;
Ok(())
}