mirror of
https://github.com/nushell/nushell.git
synced 2024-11-23 00:43:33 +01:00
d4dd8284a6
* create Pallet trait * correct spelling to palette * move palette to it's own module
13 lines
282 B
Rust
13 lines
282 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 palette;
|
|
pub(crate) mod shell;
|
|
pub(crate) mod shell_manager;
|
|
pub(crate) mod value_shell;
|
|
|
|
pub(crate) use helper::Helper;
|