From 31ec051fd683d3747f10a0981b497d90f08d25a3 Mon Sep 17 00:00:00 2001 From: Mason Reed Date: Sat, 27 Sep 2025 17:39:19 -0400 Subject: [Rust] Refactor download provider module to allow for custom implementations --- rust/src/download.rs | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 rust/src/download.rs (limited to 'rust/src/download.rs') 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::*; -- cgit v1.3.1