1 2 3 4 5 6 7 8 9 10 11
//! Output formatting module pub mod csv; pub mod format; pub mod json; pub mod table; pub use csv::CsvFormatter; pub use format::Formatter; pub use json::JsonFormatter; pub use table::TableFormatter;