implement server state/signal handling, depend on tokio-signal

This commit is contained in:
Dietmar Maurer
2019-04-08 12:21:29 +02:00
parent 5a12c0e2fb
commit 7a630df709
5 changed files with 166 additions and 3 deletions

View File

@ -7,9 +7,14 @@
mod environment;
pub use environment::*;
mod state;
pub use state::*;
mod worker_task;
pub use worker_task::*;
pub mod formatter;
#[macro_use]
pub mod rest;