//! Backup Server Administration use proxmox_router::list_subdirs_api_method; use proxmox_router::{Router, SubdirMap}; pub mod datastore; pub mod namespace; pub mod sync; pub mod traffic_control; pub mod verify; const SUBDIRS: SubdirMap = &[ ("datastore", &datastore::ROUTER), ("sync", &sync::ROUTER), ("traffic-control", &traffic_control::ROUTER), ("verify", &verify::ROUTER), ]; pub const ROUTER: Router = Router::new() .get(&list_subdirs_api_method!(SUBDIRS)) .subdirs(SUBDIRS);