9 lines
235 B
Rust
9 lines
235 B
Rust
use crate::Error;
|
|
|
|
/// Check if the bot is alive
|
|
#[poise::command(slash_command)]
|
|
pub async fn ping(ctx: poise::Context<'_, (), Error>) -> Result<(), Error> {
|
|
ctx.reply(format!("Powong! `{:?}`", ctx.ping().await)).await?;
|
|
Ok(())
|
|
}
|