flawless_http/
lib.rs

1#![doc = include_str!("../Readme.md")]
2
3mod body;
4mod config;
5mod error;
6mod request;
7mod response;
8pub mod transport;
9
10// Export everything to the root level.
11pub use body::IntoBody;
12pub use config::Config;
13pub use error::{Error, ErrorKind, Transport};
14pub use request::Request;
15pub use request::{delete, get, head, patch, post, put};
16pub use response::Response;