1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-05-19 16:58:14 +00:00
actix-web/actix-http/src/responses/mod.rs

10 lines
221 B
Rust
Raw Normal View History

//! HTTP response.
mod builder;
mod head;
#[allow(clippy::module_inception)]
mod response;
pub(crate) use self::head::BoxedResponseHead;
2023-07-17 01:38:12 +00:00
pub use self::{builder::ResponseBuilder, head::ResponseHead, response::Response};