fire_http_representation/
lib.rs

1#![cfg_attr(docsrs, feature(doc_cfg))]
2#![doc = include_str!("../README.md")]
3
4/// Reexport the http crate
5pub use http;
6
7pub mod body;
8pub mod header;
9pub use body::Body;
10
11pub mod request;
12pub use request::Request;
13
14pub mod response;
15pub use response::Response;