1
0
mirror of https://github.com/fafhrd91/actix-web synced 2025-02-07 05:54:22 +01:00

12 lines
247 B
Rust
Raw Normal View History

//! HTTP response.
mod builder;
mod head;
#[allow(clippy::module_inception)]
mod response;
pub use self::builder::ResponseBuilder;
pub(crate) use self::head::BoxedResponseHead;
pub use self::head::ResponseHead;
pub use self::response::Response;