-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add new option to fetch data from remote URL into string
Add new option --payload-url to fetch data from the given URL into String. Only one of both --input-xml and --payload-url should be given, otherwil fail.
- Loading branch information
1 parent
d054987
commit 5f1a3a4
Showing
2 changed files
with
166 additions
and
78 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
mod download; | ||
pub use download::download_and_hash; | ||
pub use download::DownloadResult; | ||
|
||
pub mod request; |