Port network/url command (#452)

* feat: add url command

* feat(network/url): add sub-command for url
This commit is contained in:
Jae-Heon Ji
2021-12-10 09:09:30 +09:00
committed by GitHub
parent 5c27ffa42e
commit c3b6e07de6
14 changed files with 424 additions and 3 deletions

View File

@ -17,6 +17,7 @@ mod yaml;
pub use self::csv::FromCsv;
pub use self::toml::FromToml;
pub use self::url::FromUrl;
pub use command::From;
pub use eml::FromEml;
pub use ics::FromIcs;
@ -25,7 +26,6 @@ pub use json::FromJson;
pub use ods::FromOds;
pub use ssv::FromSsv;
pub use tsv::FromTsv;
pub use url::FromUrl;
pub use vcf::FromVcf;
pub use xlsx::FromXlsx;
pub use xml::FromXml;