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.rs6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/commands/general/bing.rs b/src/commands/general/bing.rs
index 54ee0dc..28fdf0d 100644
--- a/src/commands/general/bing.rs
+++ b/src/commands/general/bing.rs
@@ -1,8 +1,10 @@
-use crate::{Context, Error};
+use crate::client::Context;
+
+use eyre::Result;
/// Make sure the wie is alive
#[poise::command(prefix_command)]
-pub async fn bing(ctx: Context<'_>) -> Result<(), Error> {
+pub async fn bing(ctx: Context<'_>) -> Result<()> {
ctx.say("bong!").await?;
Ok(())
}