]> git.proxmox.com Git - proxmox-backup.git/blob - src/lib.rs
fcbc2e18e66f1c7408e9b6968832f742dba16e12
[proxmox-backup.git] / src / lib.rs
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
6 #[macro_use]
7 pub mod tools;
8
9 #[macro_use]
10 pub mod server;
11
12 #[macro_use]
13 pub mod backup;
14
15 pub mod config;
16
17 pub mod api2;
18
19 pub mod auth_helpers;
20
21 pub mod auth;
22
23 pub mod rrd;
24
25 pub mod tape;
26
27 pub mod acme;