diff options
Diffstat (limited to 'src/commands/mod.rs')
| -rw-r--r-- | src/commands/mod.rs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/commands/mod.rs b/src/commands/mod.rs index b20258c..db661e6 100644 --- a/src/commands/mod.rs +++ b/src/commands/mod.rs @@ -4,6 +4,7 @@ use color_eyre::eyre::Report; use poise::Command; mod general; +mod moderation; mod optional; pub fn global() -> Vec<Command<Data, Report>> { @@ -13,3 +14,7 @@ pub fn global() -> Vec<Command<Data, Report>> { pub fn optional() -> Vec<Command<Data, Report>> { optional::to_commands() } + +pub fn moderation() -> Vec<Command<Data, Report>> { + moderation::to_commands() +} |
