moved "debug" commands to a single command to reduce clutter

This commit is contained in:
2026-02-23 19:42:17 +01:00
parent 25c6577997
commit 7eb830cf25
11 changed files with 72 additions and 70 deletions
+8 -4
View File
@@ -1,16 +1,13 @@
#![warn(unused_extern_crates)]
#![allow(clippy::needless_return)]
#![allow(static_mut_refs)]
mod cmds {
pub mod add_server;
pub mod eight_ball;
pub mod embed;
pub mod help;
pub mod ping;
pub mod reload_cfg;
pub mod send;
pub mod stop;
pub mod whoami;
}
mod re_cmds {
pub mod add;
@@ -24,6 +21,13 @@ mod re_cmds {
pub mod update;
pub mod vote;
}
mod debug_cmds {
pub mod main_cmd;
pub mod stop;
pub mod ping;
pub mod reload_cfg;
pub mod whoami;
}
mod events;
mod messages;
mod python;