1
0
mirror of https://github.com/fafhrd91/actix-web synced 2025-02-07 13:54:24 +01:00

12 lines
240 B
Rust
Raw Normal View History

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