1pub mod config; 2pub mod error; 3pub mod support; 4#[cfg(test)] 5mod tests; 6 7pub type HttpResult<T, E = error::Error> = Result<T, E>; 8 9pub struct Http { 10 client: reqwest_middleware::ClientWithMiddleware, 11} 12 13// re-export 14pub use soph_core::*;