1 2 3 4 5 6 7 8 9 10
//! CLI infrastructure module //! //! Contains command-line interface structures, routing, and execution logic. pub mod authority; pub mod commands; pub mod output; pub mod run; pub use run::run;