You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
2b-rs/src/commands/misc/mod.rs

11 lines
163 B
Rust

use serenity::framework::standard::macros::group;
use ping::PING_COMMAND;
pub(crate) mod help;
pub(crate) mod ping;
#[group]
#[commands(ping)]
pub struct Misc;