//! Types related to the HTTP protocol (status codes, headers, etc).
//!
//! This module re-exports all the items from the [`http`] crate
//! that are needed to work with Pavex's [`RequestHead`](crate::request::RequestHead)s and
//! [`Response`](crate::response::Response)s.
pub use header;
pub use method;
pub use status;
pub use uri;
pub use version;
// Re-export commonly used types at the top-level for convenience.
pub use HeaderMap;
pub use HeaderName;
pub use HeaderValue;
pub use Method;
pub use StatusCode;
pub use Uri;
pub use Version;