forked from extern/nushell
The `config` command uses different kinds of named arguments, which illustrates how it works.
14 lines
292 B
Rust
14 lines
292 B
Rust
crate mod base;
|
|
crate mod config;
|
|
crate mod desc;
|
|
crate mod dict;
|
|
crate mod files;
|
|
crate mod process;
|
|
crate mod serialization;
|
|
crate mod types;
|
|
|
|
crate use base::{Primitive, Value};
|
|
crate use desc::{DataDescriptor, DescriptorName};
|
|
crate use dict::Dictionary;
|
|
crate use files::dir_entry_dict;
|