1
0
mirror of https://github.com/actix/actix-extras.git synced 2024-11-25 08:22:43 +01:00
actix-extras/src/h1/mod.rs

11 lines
251 B
Rust
Raw Normal View History

2018-10-05 05:02:10 +02:00
//! HTTP/1 implementation
mod codec;
mod decoder;
mod dispatcher;
2018-10-05 19:03:10 +02:00
mod encoder;
2018-10-05 05:02:10 +02:00
mod service;
2018-10-05 06:14:18 +02:00
pub use self::codec::{Codec, InMessage, OutMessage};
2018-10-05 05:02:10 +02:00
pub use self::dispatcher::Dispatcher;
pub use self::service::{H1Service, H1ServiceHandler, TakeRequest};