1 2 3 4 5 6 7 8 9
#[cfg(feature = "command")] mod command; fn main() -> std::io::Result<()> { #[cfg(feature = "command")] command::main()?; Ok(()) }