1pub mod commands; 2pub mod hazard; 3pub mod error; 4 5use utils::error::Result; 6 7pub fn start() -> Result<()> { 8 // does nothing 9 10 Ok(()) 11}