src/server.rs: improve crate layout

This commit is contained in:
Dietmar Maurer
2019-04-06 09:17:25 +02:00
parent 4b01c983f0
commit 882594c5e9
4 changed files with 49 additions and 11 deletions

15
src/server.rs Normal file
View File

@ -0,0 +1,15 @@
//! Proxmox Server/Service framework
//!
//! This code provides basic primitives to build our REST API
//! services. We want async IO, so this is built on top of
//! tokio/hyper.
mod environment;
pub use environment::*;
mod worker_task;
pub use worker_task::*;
pub mod formatter;
#[macro_use]
pub mod rest;