blob: 93c630bf666fb5c16b47cc0d44a1f5fb352cf0f8 (
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(())
}
|