1
2
3
4
5
6
7
8
9
//! HTTP response.

mod builder;
mod head;
#[allow(clippy::module_inception)]
mod response;

pub(crate) use self::head::BoxedResponseHead;
pub use self::{builder::ResponseBuilder, head::ResponseHead, response::Response};