mirror of
https://github.com/nushell/nushell.git
synced 2025-01-16 03:08:42 +01:00
6bfd8532e4
* WIP - changes to support bat config * added bat configuration * removed debug info * clippy fix * changed [bat] to [textview] Co-authored-by: Darren Schroeder <fdncred@hotmail.com>
13 lines
277 B
Rust
13 lines
277 B
Rust
pub(crate) mod base;
|
|
pub(crate) mod command;
|
|
pub mod config;
|
|
pub(crate) mod dict;
|
|
pub(crate) mod files;
|
|
pub mod primitive;
|
|
pub(crate) mod types;
|
|
pub mod value;
|
|
|
|
pub(crate) use command::command_dict;
|
|
pub(crate) use dict::TaggedListBuilder;
|
|
pub(crate) use files::dir_entry_dict;
|