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