]> git.proxmox.com Git - proxmox-backup.git/blob - src/server.rs
fix #2871: close FDs when scanning backup group
[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 upid;
11 pub use upid::*;
12
13 mod state;
14 pub use state::*;
15
16 mod command_socket;
17 pub use command_socket::*;
18
19 mod worker_task;
20 pub use worker_task::*;
21
22 mod h2service;
23 pub use h2service::*;
24
25 pub mod config;
26 pub use config::*;
27
28 pub mod formatter;
29
30 #[macro_use]
31 pub mod rest;
32