volo_http/
response.rs

1//! Response types for client and server.
2
3use crate::body::Body;
4
5/// [`Response`] with [`Body`] as default body
6///
7/// [`Response`]: http::response::Response
8pub type Response<B = Body> = http::response::Response<B>;