1 2 3 4 5 6 7 8 9 10 11 12 13
//! CLI command execution framework //! //! Low-level abstractions: Command trait, CommandContext, error types, //! and ProcessTracker. #[allow(dead_code)] mod command; #[allow(dead_code)] mod context; #[allow(dead_code)] mod error; #[allow(dead_code)] mod process;