src/server.rs: improve crate layout
This commit is contained in:
15
src/server.rs
Normal file
15
src/server.rs
Normal 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;
|
||||
|
Reference in New Issue
Block a user