1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-05-20 09:18:26 +00:00
actix-web/actix-web/src/http/mod.rs

7 lines
206 B
Rust
Raw Normal View History

//! Various HTTP related types.
pub mod header;
2021-12-25 02:28:23 +00:00
// TODO: figure out how best to expose http::Error vs actix_http::Error
pub use actix_http::{uri, ConnectionType, Error, Method, StatusCode, Uri, Version};