summaryrefslogtreecommitdiff
path: root/src/commands/general/bing.rs
blob: 54ee0dceabd5415829c8345decb4f3ef038dfd92 (plain)
1
2
3
4
5
6
7
8
use crate::{Context, Error};

/// Make sure the wie is alive
#[poise::command(prefix_command)]
pub async fn bing(ctx: Context<'_>) -> Result<(), Error> {
	ctx.say("bong!").await?;
	Ok(())
}