1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-06-12 10:19:36 +00:00
actix-web/src/h1/mod.rs

12 lines
295 B
Rust
Raw Normal View History

2018-10-05 03:02:10 +00:00
//! HTTP/1 implementation
mod codec;
mod decoder;
mod dispatcher;
2018-10-05 17:03:10 +00:00
mod encoder;
2018-10-05 03:02:10 +00:00
mod service;
2018-10-05 04:14:18 +00:00
pub use self::codec::{Codec, InMessage, OutMessage};
2018-10-08 14:55:01 +00:00
pub use self::decoder::{PayloadDecoder, RequestDecoder};
2018-10-05 03:02:10 +00:00
pub use self::dispatcher::Dispatcher;
2018-10-08 14:55:01 +00:00
pub use self::service::{H1Service, H1ServiceHandler};