1 2 3 4 5 6 7 8 9
//! Command-line interface module for user input handling. pub mod command; pub mod commands; pub mod format; pub mod shutdown; pub use command::CommandProcessor; pub use shutdown::ShutdownController;