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

10 lines
225 B
Rust
Raw Normal View History

2018-10-05 05:02:10 +02:00
//! HTTP/1 implementation
mod codec;
mod decoder;
mod dispatcher;
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};