Skip to main content

entrenar/cli/
mod.rs

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