blob: 4e541a90c8950b9b5dc6b0d06ac44b3e6ebe47a7 (
plain)
1
2
3
4
5
6
7
8
9
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::*;
|