From e38a441e37ec1a1dff07cf8bcff3e36a411709aa Mon Sep 17 00:00:00 2001 From: seth Date: Fri, 15 Dec 2023 01:14:15 -0500 Subject: remove moderation commands this was mainly an experiment; i don't think we need them --- src/commands/mod.rs | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) (limited to 'src/commands/mod.rs') diff --git a/src/commands/mod.rs b/src/commands/mod.rs index 833df38..df2d857 100644 --- a/src/commands/mod.rs +++ b/src/commands/mod.rs @@ -4,22 +4,12 @@ use color_eyre::eyre::Report; use poise::Command; mod general; -mod moderation; mod optional; pub fn to_global_commands() -> Vec> { - vec![ - general::ask(), - general::bing(), - general::convert(), - general::random(), - general::version(), - moderation::config(), - moderation::ban_user(), - moderation::kick_user(), - ] + general::to_comands() } pub fn to_optional_commands() -> Vec> { - vec![optional::copypasta(), optional::teawiespam()] + optional::to_commands() } -- cgit v1.2.3