proxmox-backup/src/lib.rs
Dietmar Maurer 986bef16be src/backup.rs; use a macro to define PROXMOX_BACKUP_PROTOCOL_ID_V1
So that we can include it in static doc strings.
2019-06-05 08:41:20 +02:00

35 lines
343 B
Rust

#[macro_use]
pub mod buildcfg;
#[macro_use]
pub mod tools;
#[macro_use]
pub mod api_schema;
#[macro_use]
pub mod server;
pub mod pxar;
pub mod section_config;
#[macro_use]
pub mod backup;
pub mod config;
pub mod storage {
pub mod config;
pub mod futures;
}
pub mod cli;
pub mod api2;
pub mod client;
pub mod auth_helpers;