nushell/crates/nu-command/src/platform/mod.rs
Matthew Auld 6ba1e6172c
Port 'ansi strip' command from nushell to engine-q (#511)
* Port 'ansi strip' command from nushell to engine-q

* added example
2021-12-18 07:32:03 +11:00

10 lines
154 B
Rust

mod ansi;
mod clear;
mod kill;
mod sleep;
pub use ansi::{Ansi, AnsiGradient, AnsiStrip};
pub use clear::Clear;
pub use kill::Kill;
pub use sleep::Sleep;