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

11 lines
294 B
Rust
Raw Normal View History

2018-01-30 08:01:20 +01:00
pub(crate) mod connect;
2018-01-28 07:03:03 +01:00
mod parser;
mod request;
2018-01-28 07:03:03 +01:00
mod response;
mod writer;
2018-01-28 07:03:03 +01:00
pub(crate) use self::writer::HttpClientWriter;
pub use self::request::{ClientRequest, ClientRequestBuilder};
2018-01-28 07:03:03 +01:00
pub use self::response::ClientResponse;
pub use self::parser::{HttpResponseParser, HttpResponseParserError};