forked from extern/nushell
* Porting 'ansi gradient' command from nushell to engine-q * passed correct span variable
10 lines
143 B
Rust
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;
|