refactor all to async/await (#617)
Co-authored-by: Danny Browning <danny.browning@protectwise.com> Co-authored-by: Daniel Eades <danieleades@hotmail.com>
This commit is contained in:
12
src/async_impl/mod.rs
Normal file
12
src/async_impl/mod.rs
Normal file
@@ -0,0 +1,12 @@
|
||||
pub use self::body::{Body, Chunk};
|
||||
pub use self::client::{Client, ClientBuilder};
|
||||
pub use self::decoder::Decoder;
|
||||
pub use self::request::{Request, RequestBuilder};
|
||||
pub use self::response::{Response, ResponseBuilderExt};
|
||||
|
||||
pub mod body;
|
||||
pub mod client;
|
||||
pub mod decoder;
|
||||
pub mod multipart;
|
||||
pub(crate) mod request;
|
||||
mod response;
|
||||
Reference in New Issue
Block a user