summaryrefslogtreecommitdiff
path: root/src/commands/general/bing.rs
blob: fefbaf10e9ea01d94e9b1245e567fcefe7c49045 (plain)
1
2
3
4
5
6
7
8
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(())
}