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