proxmox-backup/src/lib.rs

43 lines
467 B
Rust
Raw Normal View History

#[macro_use]
pub mod buildcfg;
#[macro_use]
2019-01-05 15:53:28 +00:00
pub mod tools;
2018-11-03 09:42:48 +00:00
#[macro_use]
2019-02-17 08:59:20 +00:00
pub mod api_schema;
#[macro_use]
pub mod server {
pub mod environment;
mod worker_task;
pub use worker_task::*;
2018-12-05 11:42:25 +00:00
pub mod formatter;
#[macro_use]
pub mod rest;
2018-11-03 09:42:48 +00:00
2018-11-15 16:07:10 +00:00
}
2018-11-15 09:14:08 +00:00
pub mod pxar;
2018-12-27 08:22:23 +00:00
2018-11-19 05:47:39 +00:00
pub mod section_config;
pub mod backup;
pub mod config;
2018-12-08 12:58:45 +00:00
2018-11-19 05:40:57 +00:00
pub mod storage {
pub mod config;
2018-11-19 05:40:57 +00:00
pub mod futures;
}
2019-02-21 08:07:25 +00:00
pub mod cli;
pub mod api2;
pub mod client;
pub mod auth_helpers;