1
0
mirror of https://github.com/fafhrd91/actix-web synced 2024-11-25 00:43:00 +01:00
actix-web/actix-http/src/client/mod.rs

12 lines
240 B
Rust
Raw Normal View History

//! Http client api
2018-11-12 08:12:54 +01:00
mod connection;
mod connector;
mod error;
2019-01-29 05:41:09 +01:00
mod h1proto;
mod h2proto;
2018-11-12 08:12:54 +01:00
mod pool;
2019-01-29 19:34:27 +01:00
pub use self::connection::Connection;
2018-11-12 08:12:54 +01:00
pub use self::connector::Connector;
2019-03-13 22:41:40 +01:00
pub use self::error::{ConnectError, InvalidUrl, SendRequestError};