soph_http/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub mod config;
pub mod error;
pub mod support;
#[cfg(test)]
mod tests;

pub type HttpResult<T, E = error::Error> = Result<T, E>;

pub struct Http {
    inner: reqwest_middleware::ClientWithMiddleware,
}

// re-export
pub use soph_core::*;