From f2cb41b11aa247ae1425d10c9162e7386089583c Mon Sep 17 00:00:00 2001 From: seth Date: Sun, 18 Feb 2024 18:13:32 -0500 Subject: add clear_messages command --- src/commands/mod.rs | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/commands/mod.rs') 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> { @@ -13,3 +14,7 @@ pub fn global() -> Vec> { pub fn optional() -> Vec> { optional::to_commands() } + +pub fn moderation() -> Vec> { + moderation::to_commands() +} -- cgit v1.2.3