mirror of
https://github.com/ethanrusz/echbot.git
synced 2025-04-18 11:26:32 -04:00
7 lines
225 B
Rust
7 lines
225 B
Rust
use crate::{Context, Error};
|
|
|
|
#[poise::command(prefix_command, owners_only)]
|
|
pub async fn register(ctx: Context<'_>) -> Result<(), Error> {
|
|
poise::builtins::register_application_commands_buttons(ctx).await?;
|
|
Ok(())
|
|
}
|