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