nushell/crates/nu-command/src/math/mod.rs

6 lines
101 B
Rust
Raw Normal View History

2021-10-21 17:29:57 +02:00
mod abs;
2021-10-25 01:58:18 +02:00
pub mod command;
2021-10-21 16:52:26 +02:00
pub use abs::SubCommand as MathAbs;
2021-10-25 01:58:18 +02:00
pub use command::MathCommand as Math;