mirror of
git://git.proxmox.com/git/proxmox-backup.git
synced 2025-01-08 21:18:07 +03:00
254b1f2213
Contains a link to the 'backup' module's doc, as that explains a lot about the inner workings of PBS and probably marks a good entry point for new readers. Signed-off-by: Stefan Reiter <s.reiter@proxmox.com>
33 lines
469 B
Rust
33 lines
469 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.
|
|
|
|
pub mod task;
|
|
|
|
#[macro_use]
|
|
pub mod buildcfg;
|
|
|
|
#[macro_use]
|
|
pub mod tools;
|
|
|
|
#[macro_use]
|
|
pub mod server;
|
|
|
|
pub mod pxar;
|
|
|
|
#[macro_use]
|
|
pub mod backup;
|
|
|
|
pub mod config;
|
|
|
|
pub mod api2;
|
|
|
|
pub mod client;
|
|
|
|
pub mod auth_helpers;
|
|
|
|
pub mod auth;
|
|
|
|
pub mod rrd;
|