proxmox-backup/src/server.rs

43 lines
646 B
Rust
Raw Normal View History

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::*;
mod upid;
pub use upid::*;
mod state;
pub use state::*;
mod command_socket;
pub use command_socket::*;
2019-04-06 07:17:25 +00:00
mod worker_task;
pub use worker_task::*;
mod h2service;
pub use h2service::*;
pub mod config;
pub use config::*;
2019-04-06 07:17:25 +00:00
pub mod formatter;
2019-04-06 07:17:25 +00:00
#[macro_use]
pub mod rest;
2020-10-28 06:33:05 +00:00
pub mod jobstate;
mod verify_job;
pub use verify_job::*;
mod prune_job;
pub use prune_job::*;
mod email_notifications;
pub use email_notifications::*;