]> git.proxmox.com Git - proxmox-backup.git/blame - src/lib.rs
cleanup: make BoxedStoreFunc private
[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
8f973f81 6#[macro_use]
51b499db
DM
7pub mod tools;
8
7e21da6e 9#[macro_use]
882594c5 10pub mod server;
16b48b81 11
986bef16 12#[macro_use]
cbdd8c54 13pub mod backup;
35cf5daa 14
a8f268af 15pub mod config;
678d72df 16
576e3bf2 17pub mod api2;
e8edbbd4 18
6c30068e 19pub mod auth_helpers;
7d817b03
DM
20
21pub mod auth;
6359dc89
DM
22
23pub mod rrd;
8c15560b
DM
24
25pub mod tape;
f2f526b6
WB
26
27pub mod acme;