Files
himalaya/src/output/mod.rs
T
Clément DOUIN 192445d7e4 make use of termcolor crate to disable colors (#236)
* table: replace custom color by termcolor

* table: deactivate colors if not tty

* table: rename printable to print, add more comments

* table: make use of writters, fix tests

* doc: update changelog

* doc: add page to wiki
2021-10-24 00:17:12 +02:00

13 lines
209 B
Rust

//! Module related to output formatting and printing.
pub mod output_arg;
pub mod output_utils;
pub use output_utils::*;
pub mod output_service;
pub use output_service::*;
pub mod print;
pub use print::*;