mirror of
https://github.com/nushell/nushell
synced 2025-01-09 11:49:00 +00:00
ef7ade59f3
Factor the big parts into separate files: - `state_delta.rs` - `state_working_set.rs` - smaller `usage.rs` This required adjusting the visibility of several parts. Makes `StateDelta` transparent for the module. Trying to reduce visibility in some other places
20 lines
371 B
Rust
20 lines
371 B
Rust
mod call_info;
|
|
mod capture_block;
|
|
mod command;
|
|
mod engine_state;
|
|
mod overlay;
|
|
mod pattern_match;
|
|
mod stack;
|
|
mod state_delta;
|
|
mod state_working_set;
|
|
mod usage;
|
|
|
|
pub use call_info::*;
|
|
pub use capture_block::*;
|
|
pub use command::*;
|
|
pub use engine_state::*;
|
|
pub use overlay::*;
|
|
pub use pattern_match::*;
|
|
pub use stack::*;
|
|
pub use state_delta::*;
|
|
pub use state_working_set::*;
|