mod help; pub use help::*; use crate::command_handler::Command; pub fn register_commands() -> Vec> { let mut commands: Vec> = Vec::new(); commands.push(Box::new(CommandHelp)); commands }