1 2 3 4 5 6 7 8 9 10 11 12
//! CLI module for entrenar //! //! This module contains all CLI command handlers and utilities. mod commands; mod logging; pub use commands::run_command; pub use logging::LogLevel; // Re-export Cli from config for convenience pub use crate::config::Cli;