* Clippy fixes * Finish converting to use clippy * fix warnings in new master * fix windows * fix windows Co-authored-by: Artem Vorotnikov <artem@vorotnikov.me>
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;
|