From 0025ad5ea8d412aacc3184d18063fd5ff3de0175 Mon Sep 17 00:00:00 2001 From: seth Date: Sat, 2 Dec 2023 07:00:24 -0500 Subject: feat: add per guild configuration --- src/commands/general/bing.rs | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 src/commands/general/bing.rs (limited to 'src/commands/general/bing.rs') 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(()) +} -- cgit v1.2.3