nushell/crates/nu-command/src/strings/format/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

6 lines
87 B
Rust

mod command;
mod filesize;
pub use self::filesize::FileSize;
pub use command::Format;