diff options
Diffstat (limited to 'src/commands/general/bing.rs')
| -rw-r--r-- | src/commands/general/bing.rs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/commands/general/bing.rs b/src/commands/general/bing.rs new file mode 100644 index 0000000..fefbaf1 --- /dev/null +++ b/src/commands/general/bing.rs @@ -0,0 +1,9 @@ +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(()) +} |
