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/moderation/mod.rs | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 src/commands/moderation/mod.rs (limited to 'src/commands/moderation/mod.rs') diff --git a/src/commands/moderation/mod.rs b/src/commands/moderation/mod.rs new file mode 100644 index 0000000..218ad16 --- /dev/null +++ b/src/commands/moderation/mod.rs @@ -0,0 +1,10 @@ +use crate::Data; + +use color_eyre::eyre::Report; +use poise::Command; + +mod clear; + +pub fn to_commands() -> Vec> { + vec![clear::clear_messages()] +} -- cgit v1.2.3