2019-04-06 07:17:25 +00:00
|
|
|
//! 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::*;
|
|
|
|
|
2019-04-08 16:43:26 +00:00
|
|
|
mod upid;
|
|
|
|
pub use upid::*;
|
|
|
|
|
2019-04-08 10:21:29 +00:00
|
|
|
mod state;
|
|
|
|
pub use state::*;
|
|
|
|
|
2019-04-08 15:59:39 +00:00
|
|
|
mod command_socket;
|
|
|
|
pub use command_socket::*;
|
|
|
|
|
2019-04-06 07:17:25 +00:00
|
|
|
mod worker_task;
|
|
|
|
pub use worker_task::*;
|
2019-04-08 10:21:29 +00:00
|
|
|
|
2019-06-26 15:29:12 +00:00
|
|
|
mod h2service;
|
|
|
|
pub use h2service::*;
|
|
|
|
|
2019-04-06 07:17:25 +00:00
|
|
|
pub mod formatter;
|
2019-04-08 10:21:29 +00:00
|
|
|
|
2019-04-06 07:17:25 +00:00
|
|
|
#[macro_use]
|
|
|
|
pub mod rest;
|
|
|
|
|