1 2 3 4 5 6 7 8 9 10 11 12 13 14
#[allow(unused_imports)] pub use commands::*; pub use hosting::*; mod commands; mod dependencies; mod hosting; mod options; mod utils; #[allow(clippy::needless_raw_strings)] mod built_info { include!(concat!(env!("OUT_DIR"), "/built.rs")); }