summaryrefslogtreecommitdiff
path: root/src/commands/bing.rs
blob: ed91bb3f4ea1b2fcd1379f9a6e4701c3641ef170 (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(())
}