use crate::{Context, Error}; /// Make sure the wie is alive #[poise::command(prefix_command)] pub async fn bing(ctx: Context<'_>) -> Result<(), Error> { ctx.say("bong!").await?; Ok(()) }