Files
nushell/crates/nu-cli/src/commands/str_/mod.rs
2020-06-27 17:38:19 +12:00

26 lines
698 B
Rust

mod capitalize;
mod collect;
mod command;
mod downcase;
mod find_replace;
mod set;
mod substring;
mod to_datetime;
mod to_decimal;
mod to_integer;
mod trim;
mod upcase;
pub use capitalize::SubCommand as StrCapitalize;
pub use collect::SubCommand as StrCollect;
pub use command::Command as Str;
pub use downcase::SubCommand as StrDowncase;
pub use find_replace::SubCommand as StrFindReplace;
pub use set::SubCommand as StrSet;
pub use substring::SubCommand as StrSubstring;
pub use to_datetime::SubCommand as StrToDatetime;
pub use to_decimal::SubCommand as StrToDecimal;
pub use to_integer::SubCommand as StrToInteger;
pub use trim::SubCommand as StrTrim;
pub use upcase::SubCommand as StrUpcase;