1 2 3 4 5 6 7 8 9 10 11 12
//! Output formatting utilities for CLI //! //! This module provides rich terminal output including colors, tables, //! progress indicators, and box drawing. pub mod output; pub mod progress; pub mod table; pub use output::{OutputFormatter, OutputStyle}; pub use progress::{ProgressIndicator, Spinner}; pub use table::TableFormatter;