diff options
Diffstat (limited to 'rust/src/download.rs')
| -rw-r--r-- | rust/src/download.rs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/rust/src/download.rs b/rust/src/download.rs new file mode 100644 index 00000000..4e541a90 --- /dev/null +++ b/rust/src/download.rs @@ -0,0 +1,10 @@ +//! Interface for registering new download providers +//! +//! WARNING: Do _not_ use this for anything other than provider registration. If you need to perform +//! http requests, use a real requests library. + +mod instance; +mod provider; + +pub use instance::*; +pub use provider::*; |
