proc_cli/ui/
mod.rs

1//! User interface components for proc CLI
2//!
3//! Handles output formatting, colors, and interactive prompts.
4
5pub mod output;
6
7pub use output::{OutputFormat, Printer};