mirror of
https://github.com/pimalaya/himalaya.git
synced 2026-06-17 05:07:55 +08:00
192445d7e4
* 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
13 lines
209 B
Rust
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::*;
|