//! This module defines the command-line interface structure and handlers.
// New module declarations for command handlers
// Add mods for stats, clear, list, remove when created
// Re-export the main handler and the command enum
pub use ;
// Re-export the Args structs for use in the main binary
pub use IndexArgs;
pub use QueryArgs;
pub use StatsArgs;
pub use ListArgs;
pub use ClearArgs;
pub use RepoArgs;
pub use CliArgs;
// Potentially re-export other args structs here later...
// Re-export Command enum if needed by binary directly
// pub use commands::Command;