1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-05-08 03:23:06 +00:00
actix-web/actix-http/src/responses/mod.rs
2023-07-17 02:38:12 +01:00

10 lines
221 B
Rust

//! 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};