1
0
mirror of https://github.com/fafhrd91/actix-web synced 2025-01-19 14:14:41 +01:00
2023-07-17 02:38:12 +01:00

10 lines
127 B
Rust

//! HTTP requests.
mod head;
mod request;
pub use self::{
head::{RequestHead, RequestHeadType},
request::Request,
};