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