mirror of
https://github.com/nushell/nushell.git
synced 2025-05-29 22:29:06 +02:00
10 lines
207 B
Rust
10 lines
207 B
Rust
mod ansi_;
|
|
mod gradient;
|
|
mod link;
|
|
mod strip;
|
|
|
|
pub use ansi_::AnsiCommand as Ansi;
|
|
pub use gradient::SubCommand as AnsiGradient;
|
|
pub use link::SubCommand as AnsiLink;
|
|
pub use strip::SubCommand as AnsiStrip;
|