1
0
mirror of https://github.com/nushell/nushell.git synced 2025-04-26 06:08:21 +02:00
nushell/crates/nu-command/src/commands/into/mod.rs
Darren Schroeder 8cd639f6a2
add nu-pretty-hex, add into binary, update binaryview ()
* add nu-pretty-hex, add into binary, update binaryview

* updated parameter name, updated examples

* fixed nu-pretty-hex test

* fixed tests again! and added a no color option to pretty-hex
2021-05-01 11:12:25 -05:00

8 lines
147 B
Rust

mod binary;
mod command;
mod int;
pub use binary::SubCommand as IntoBinary;
pub use command::Command as Into;
pub use int::SubCommand as IntoInt;