src/server/worker_task.rs: implement task registry

This commit is contained in:
Dietmar Maurer
2019-04-04 08:58:39 +02:00
parent 52ddc2522d
commit 479f6e40ec
2 changed files with 216 additions and 0 deletions

View File

@ -11,6 +11,8 @@ pub mod api_schema;
pub mod server {
pub mod environment;
mod worker_task;
pub use worker_task::*;
pub mod formatter;
#[macro_use]
pub mod rest;