blob: b80ebca0bd59f7e54a8c4efa562f6ac5c1f40683 (
plain)
1
2
3
4
5
6
7
8
9
10
|
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(())
}
|