nushell/crates/nu-command/src/strings/split/mod.rs
Stefan Holderbach 20b697f722
Fix internal module reexports (#9378)
# Description
`cargo +stable check` was complaining about ambiguous wildcard
reexports. Fixed by making the reexport of modules not pub as only the
explicitly named symbols are actually needed in the current state.


# User-Facing Changes
None
2023-06-07 16:36:34 +02:00

14 lines
308 B
Rust

mod chars;
mod column;
mod command;
mod list;
mod row;
mod words;
pub use chars::SubCommand as SplitChars;
pub use column::SubCommand as SplitColumn;
pub use command::SplitCommand as Split;
pub use list::SubCommand as SplitList;
pub use row::SubCommand as SplitRow;
pub use words::SubCommand as SplitWords;