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