forked from extern/nushell
356e05177c
I wanted to get the infrastructure in place for starters for our *nu-cmd-extra* crate... The plan is to put inside here the following commands... * bits * bytes * math I thought it would be easier to do one at a time as well as get the nu-cmd-extra crate out there on crates.io for this upcoming release... Once this lands the infrastructure will be in place to move over the other noted commands for now... And then add other stuff we do NOT want to be in 1.0.
7 lines
102 B
Rust
7 lines
102 B
Rust
mod example_test;
|
|
pub mod extra;
|
|
pub use extra::*;
|
|
|
|
#[cfg(test)]
|
|
pub use example_test::test_examples;
|