1
0
mirror of https://github.com/actix/actix-extras.git synced 2024-11-26 00:42:43 +01:00
actix-extras/src/client/mod.rs

7 lines
150 B
Rust
Raw Normal View History

//! Http client api
mod request;
mod response;
pub use self::request::{ClientRequest, ClientRequestBuilder};
pub use self::response::ClientResponse;