mirror of
https://github.com/nushell/nushell.git
synced 2024-11-29 20:03:54 +01:00
20b697f722
# 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
14 lines
308 B
Rust
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;
|