blob: 28fdf0deb60c1577c034cf542b37bf7410d7aee3 (
plain)
1
2
3
4
5
6
7
8
9
10
|
use crate::client::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(())
}
|