1 2 3 4 5 6 7 8 9 10 11
//! User interface components for proc CLI //! //! Handles output formatting, colors, and interactive prompts. pub mod format; pub mod output; pub use format::{ colorize_status, format_duration, format_memory, plural, truncate_path, truncate_string, }; pub use output::{OutputFormat, Printer};