]> git.proxmox.com Git - proxmox-backup.git/blame - src/lib.rs
tape restore: do not verify restored files
[proxmox-backup.git] / src / lib.rs
CommitLineData
254b1f22
SR
1//! See the different modules for documentation on their usage.
2//!
3//! The [backup](backup/index.html) module contains some detailed information
4//! on the inner workings of the backup server regarding data storage.
5
d1993187
WB
6pub mod task;
7
9f4962d3
WB
8#[macro_use]
9pub mod buildcfg;
10
8f973f81 11#[macro_use]
51b499db
DM
12pub mod tools;
13
7e21da6e 14#[macro_use]
882594c5 15pub mod server;
16b48b81 16
8968258b 17pub mod pxar;
b62b6cad 18
986bef16 19#[macro_use]
cbdd8c54 20pub mod backup;
35cf5daa 21
a8f268af 22pub mod config;
678d72df 23
576e3bf2 24pub mod api2;
e8edbbd4 25
151c6ce2 26pub mod client;
6c30068e 27
6c30068e 28pub mod auth_helpers;
7d817b03
DM
29
30pub mod auth;
6359dc89
DM
31
32pub mod rrd;
8c15560b
DM
33
34pub mod tape;
f2f526b6
WB
35
36pub mod acme;