mirror of
https://github.com/fafhrd91/actix-web
synced 2025-08-19 12:25:37 +02:00
10 lines
221 B
Rust
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};
|