|
//! Http client api
|
|
mod connection;
|
|
mod connector;
|
|
mod error;
|
|
mod h1proto;
|
|
mod h2proto;
|
|
mod pool;
|
|
|
|
pub use self::connection::Connection;
|
|
pub use self::connector::Connector;
|
|
pub use self::error::{ConnectError, InvalidUrl, SendRequestError};
|
|
pub use self::pool::Protocol;
|