mirror of
https://github.com/danbulant/nushell
synced 2026-05-22 05:49:17 +00:00
* 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>
12 lines
277 B
Rust
12 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;
|