1
2
3
4
5
6
7
8
9
//! Implementations of the `encode::Write` trait.

pub use self::ansi::AnsiWriter;
pub use self::console::{ConsoleWriter, ConsoleWriterLock};
pub use self::simple::SimpleWriter;

mod ansi;
mod console;
mod simple;