mod.rs (233B)
1 use crate::config::Config; 2 use crate::errors::Error; 3 use mrsbfh::commands::command_generate; 4 5 pub mod hello_world; 6 7 #[command_generate(bot_name = "Example", description = "This bot prints hello!")] 8 enum Commands { 9 Hello_World, 10 }