]> git.proxmox.com Git - proxmox-backup.git/blame - src/server.rs
src/api2/admin/datastore.rs: add status api call
[proxmox-backup.git] / src / server.rs
CommitLineData
882594c5
DM
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
7mod environment;
8pub use environment::*;
9
634132fe
DM
10mod upid;
11pub use upid::*;
12
7a630df7
DM
13mod state;
14pub use state::*;
15
78a39e05
DM
16mod command_socket;
17pub use command_socket::*;
18
882594c5
DM
19mod worker_task;
20pub use worker_task::*;
7a630df7 21
42a87f7b
DM
22mod h2service;
23pub use h2service::*;
24
882594c5 25pub mod formatter;
7a630df7 26
882594c5
DM
27#[macro_use]
28pub mod rest;
29