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

17 lines
300 B
Rust

use serenity::framework::standard::macros::group;
use pekofy::PEKOFY_COMMAND;
use ping::PING_COMMAND;
use shutdown::SHUTDOWN_COMMAND;
use stats::STATS_COMMAND;
pub(crate) mod help;
mod pekofy;
mod ping;
mod shutdown;
mod stats;
#[group]
#[commands(ping, stats, shutdown, pekofy)]
pub struct Misc;