Add url commands (#2274)

* scheme
* path
* query
* host
This commit is contained in:
Matt Hall
2020-07-29 21:56:56 +01:00
committed by GitHub
parent 37f10cf273
commit 26e77a4b05
10 changed files with 373 additions and 1 deletions

View File

@ -115,6 +115,7 @@ pub(crate) mod to_yaml;
pub(crate) mod trim;
pub(crate) mod uniq;
pub(crate) mod update;
pub(crate) mod url_;
pub(crate) mod version;
pub(crate) mod what;
pub(crate) mod where_;
@ -247,6 +248,7 @@ pub(crate) use to_yaml::ToYAML;
pub(crate) use touch::Touch;
pub(crate) use trim::Trim;
pub(crate) use uniq::Uniq;
pub(crate) use url_::{UrlCommand, UrlHost, UrlPath, UrlQuery, UrlScheme};
pub(crate) use version::Version;
pub(crate) use what::What;
pub(crate) use where_::Where;