]> git.proxmox.com Git - proxmox-backup.git/blob - src/lib.rs
verify jobs: add permissions
[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 pub mod task;
7
8 #[macro_use]
9 pub mod buildcfg;
10
11 #[macro_use]
12 pub mod tools;
13
14 #[macro_use]
15 pub mod server;
16
17 pub mod pxar;
18
19 #[macro_use]
20 pub mod backup;
21
22 pub mod config;
23
24 pub mod api2;
25
26 pub mod client;
27
28 pub mod auth_helpers;
29
30 pub mod auth;
31
32 pub mod rrd;