1//! Interface for registering new download providers
2//!
3//! WARNING: Do _not_ use this for anything other than provider registration. If you need to perform
4//! http requests, use a real requests library.
56mod instance;
7mod provider;
89pub use instance::*;
10pub use provider::*;