use crate::Data; use eyre::Report; use poise::Command; mod general; mod moderation; mod optional; pub fn global() -> Vec> { general::to_comands() } pub fn optional() -> Vec> { optional::to_commands() } pub fn moderation() -> Vec> { moderation::to_commands() }