//! xchecker-cli - CLI interface for xchecker
//!
//! This crate provides the command-line interface for the xchecker tool,
//! including command parsing, argument handling, and CLI-specific logic.
// Re-export types from their new locations after modularization
pub use ;
pub use XCheckerError;
pub use ExitCode;
pub use PhaseId;
/// Main CLI entry point
///
/// This function parses command-line arguments and executes the appropriate command.
pub async
/// Parse CLI arguments
///
/// This function parses command-line arguments and returns the parsed configuration.