sandwichmeister/src/commands/ping.rs
2025-08-06 17:24:33 +02:00

8 lines
170 B
Rust

use crate::Context;
use crate::Error;
#[poise::command(prefix_command)]
pub async fn ping(ctx: Context<'_>) -> Result<(), Error> {
ctx.say("Pong!").await?;
Ok(())
}