]> git.proxmox.com Git - proxmox-backup.git/blob - src/server.rs
src/server.rs: improve crate layout
[proxmox-backup.git] / src / server.rs
1 //! Proxmox Server/Service framework
2 //!
3 //! This code provides basic primitives to build our REST API
4 //! services. We want async IO, so this is built on top of
5 //! tokio/hyper.
6
7 mod environment;
8 pub use environment::*;
9
10 mod worker_task;
11 pub use worker_task::*;
12 pub mod formatter;
13 #[macro_use]
14 pub mod rest;
15