mirror of
https://github.com/nushell/nushell.git
synced 2025-04-24 21:28:20 +02:00
# 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
6 lines
87 B
Rust
6 lines
87 B
Rust
mod command;
|
|
mod filesize;
|
|
|
|
pub use self::filesize::FileSize;
|
|
pub use command::Format;
|