src/server/h2service.rs: implement generic h2 service

This commit is contained in:
Dietmar Maurer
2019-06-26 17:29:12 +02:00
parent fb0470837b
commit 42a87f7b96
3 changed files with 28 additions and 22 deletions

View File

@ -19,6 +19,9 @@ pub use command_socket::*;
mod worker_task;
pub use worker_task::*;
mod h2service;
pub use h2service::*;
pub mod formatter;
#[macro_use]