moved database-related commands into subcommands & added wwrps database entry

This commit is contained in:
2026-02-27 13:00:40 +01:00
parent b3a6a7eb25
commit 650cb98a3e
8 changed files with 83 additions and 26 deletions
+6 -2
View File
@@ -3,7 +3,6 @@
#![allow(static_mut_refs)]
mod cmds {
pub mod add_server;
pub mod eight_ball;
pub mod embed;
pub mod help;
@@ -11,7 +10,6 @@ mod cmds {
}
mod re_cmds {
pub mod add;
pub mod admin_bind;
pub mod approve;
pub mod generic_fns;
pub mod get;
@@ -31,6 +29,12 @@ mod debug_cmds {
pub mod view_guilds;
pub mod whoami;
}
mod db_cmds {
pub mod add_server;
pub mod reddit_channel;
pub mod main_cmd;
pub mod wwrps_channel;
}
mod events;
mod messages;
mod python;