Files
nushell/crates/nu-command/src/commands/ansi/mod.rs
Darren Schroeder 57ebec385f add ansi strip subcommand (#3095)
* add ansi subcommand

* changed example test, added additional test
2021-02-23 14:16:13 -06:00

6 lines
99 B
Rust

mod command;
mod strip;
pub use command::Command as Ansi;
pub use strip::SubCommand as AnsiStrip;