1//! Output formatting for optimization results. 2//! 3//! Supports multiple output formats: table, JSON, YAML, and plain text. 4 5mod output; 6 7pub use output::{OutputFormat, format_result, format_result_to_string};