1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![doc = include_str!("../Readme.md")]

mod body;
mod config;
mod error;
mod request;
mod response;
pub mod transport;

// Export everything to the root level.
pub use body::IntoBody;
pub use config::Config;
pub use error::{Error, ErrorKind, Transport};
pub use request::Request;
pub use request::{delete, get, head, patch, post, put};
pub use response::Response;