reqwest_lb/
lib.rs

1pub mod discovery;
2pub mod supplier;
3
4mod lb;
5mod middleware;
6mod with;
7
8pub use lb::*;
9pub use middleware::*;
10
11///
12/// Box error
13///
14pub(crate) type BoxError = Box<dyn std::error::Error + Send + Sync>;