forked from extern/nushell
b2c5af457e
This improves incremental build time when working on what was previously the root package. For example, previously all plugins would be rebuilt with a change to `src/commands/classified/external.rs`, but now only `nu-cli` will have to be rebuilt (and anything that depends on it).
12 lines
258 B
Rust
12 lines
258 B
Rust
#![allow(clippy::module_inception)]
|
|
|
|
pub(crate) mod completer;
|
|
pub(crate) mod filesystem_shell;
|
|
pub(crate) mod help_shell;
|
|
pub(crate) mod helper;
|
|
pub(crate) mod shell;
|
|
pub(crate) mod shell_manager;
|
|
pub(crate) mod value_shell;
|
|
|
|
pub(crate) use helper::Helper;
|