binaryninja/
download.rs

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.
5
6mod instance;
7mod provider;
8
9pub use instance::*;
10pub use provider::*;