blob: d55d8ee2f19a7af2409c03d9d37eb60980f68b39 (
plain)
1
2
3
4
5
6
7
8
9
10
|
use crate::Context;
use eyre::Result;
/// Make sure the wie is alive
#[poise::command(prefix_command)]
pub async fn bing(ctx: Context<'_>) -> Result<()> {
ctx.say("bong!").await?;
Ok(())
}
|