proxmox-backup/src/lib.rs
Wolfgang Bumiller 2b7f8dd5ea move client to pbs-client subcrate
Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
2021-07-19 12:58:43 +02:00

28 lines
420 B
Rust

//! See the different modules for documentation on their usage.
//!
//! The [backup](backup/index.html) module contains some detailed information
//! on the inner workings of the backup server regarding data storage.
#[macro_use]
pub mod tools;
#[macro_use]
pub mod server;
#[macro_use]
pub mod backup;
pub mod config;
pub mod api2;
pub mod auth_helpers;
pub mod auth;
pub mod rrd;
pub mod tape;
pub mod acme;