Rename some files (#952)

* renamed some files

* clippy

* update tests
This commit is contained in:
Darren Schroeder
2022-02-05 11:35:02 -06:00
committed by GitHub
parent 3eba90232a
commit 2dd32c2b88
35 changed files with 63 additions and 62 deletions

View File

@ -1,10 +1,10 @@
mod basename;
pub mod command;
mod dirname;
mod exists;
mod expand;
mod join;
mod parse;
pub mod path_;
mod relative_to;
mod split;
mod r#type;
@ -12,12 +12,12 @@ mod r#type;
use std::path::Path as StdPath;
pub use basename::SubCommand as PathBasename;
pub use command::PathCommand as Path;
pub use dirname::SubCommand as PathDirname;
pub use exists::SubCommand as PathExists;
pub use expand::SubCommand as PathExpand;
pub use join::SubCommand as PathJoin;
pub use parse::SubCommand as PathParse;
pub use path_::PathCommand as Path;
pub use r#type::SubCommand as PathType;
pub use relative_to::SubCommand as PathRelativeTo;
pub use split::SubCommand as PathSplit;