1 2 3 4 5 6 7 8 9 10 11 12 13 14
//! Output formatting for CLI. //! //! This module provides rich output formatting including tables, //! charts, and export functionality. pub mod chart; pub mod export; mod reports; pub mod table; pub use chart::*; pub use export::*; pub use reports::{AnalysisReport, BacktestReport, OptimizationReport, RangeCandidate}; pub use table::*;