nushell/crates/nu-command/src/platform/mod.rs
Matthew Auld 438c2df8b6
Porting 'ansi gradient' command from nushell to engine-q (#509)
* Porting  'ansi gradient' command from nushell to engine-q

* passed correct span variable
2021-12-18 04:40:47 +11:00

10 lines
143 B
Rust

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