* Port str capitalize command * Keep consistent naming for str commands Co-authored-by: Stefan Stanciulescu <contact@stefanstanciulescu.com>
8 lines
126 B
Rust
8 lines
126 B
Rust
mod capitalize;
|
|
mod case;
|
|
mod collect;
|
|
|
|
pub use capitalize::SubCommand as StrCapitalize;
|
|
pub use case::*;
|
|
pub use collect::*;
|