1//! Batteries-included CLI output library for Rust. 2 3#[doc(hidden)] 4pub mod global; 5 6mod config; 7mod macros; 8mod xmt; 9 10pub use crate::xmt::XMT; 11pub use colored::Color; 12pub use config::{Config, Level, OutputMode, Style}; 13pub use global::{init, init_default, nest, pick};