cleanup: move scan changers API implementation

This commit is contained in:
Dietmar Maurer
2021-01-27 09:58:16 +01:00
parent 16b4d78400
commit 887f1cb90c
4 changed files with 42 additions and 28 deletions

View File

@ -1,3 +1,5 @@
//! The Proxmox Backup Server API
pub mod access;
pub mod admin;
pub mod backup;
@ -18,7 +20,7 @@ use proxmox::list_subdirs_api_method;
const NODES_ROUTER: Router = Router::new().match_all("node", &node::ROUTER);
pub const SUBDIRS: SubdirMap = &[
const SUBDIRS: SubdirMap = &[
("access", &access::ROUTER),
("admin", &admin::ROUTER),
("backup", &backup::ROUTER),