1//! CLI module - Command line interface for zinit 2 3pub mod args; 4pub mod commands; 5 6pub use args::Args; 7pub use commands::run_command;