11 lines
206 B
Rust
11 lines
206 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("Powong!").await?;
|
||
|
Ok(())
|
||
|
}
|