nushell/src/commands.rs
Yehuda Katz 69effbc9e7 Improve signature infrastructure
The `config` command uses different kinds of named arguments, which
illustrates how it works.
2019-05-31 22:54:15 -07:00

28 lines
526 B
Rust

crate mod args;
crate mod cd;
crate mod classified;
crate mod column;
crate mod command;
crate mod config;
crate mod from_json;
crate mod ls;
crate mod open;
crate mod ps;
crate mod reject;
crate mod select;
crate mod size;
crate mod skip;
crate mod sort_by;
crate mod split_column;
crate mod split_row;
crate mod take;
crate mod to_array;
crate mod to_json;
crate mod trim;
crate mod view;
crate mod where_;
crate use command::command;
crate use config::Config;
crate use to_array::stream_to_array;
crate use where_::Where;