proxmox-backup/src/lib.rs

27 lines
290 B
Rust
Raw Normal View History

2018-11-01 12:05:45 +00:00
pub mod static_map;
2018-11-03 09:42:48 +00:00
#[macro_use]
2018-11-15 16:07:10 +00:00
pub mod api {
2018-11-03 09:42:48 +00:00
2018-11-15 16:07:10 +00:00
#[macro_use]
pub mod schema;
2018-11-22 10:23:49 +00:00
pub mod registry;
2018-11-15 16:07:10 +00:00
#[macro_use]
pub mod router;
pub mod config;
pub mod server;
2018-11-03 09:42:48 +00:00
2018-11-15 16:07:10 +00:00
}
2018-11-15 09:14:08 +00:00
2018-11-19 05:47:39 +00:00
pub mod section_config;
2018-11-19 05:40:57 +00:00
pub mod storage {
pub mod futures;
}
2018-11-16 12:14:11 +00:00
pub mod getopts;
2018-11-03 09:42:48 +00:00
pub mod api3;