2019-11-21 13:14:54 +00:00
|
|
|
use proxmox::api::router::{Router, SubdirMap};
|
|
|
|
use proxmox::api::list_subdirs_api_method;
|
2019-01-04 09:32:27 +00:00
|
|
|
|
|
|
|
pub mod datastore;
|
|
|
|
|
2019-11-21 08:36:41 +00:00
|
|
|
const SUBDIRS: SubdirMap = &[
|
|
|
|
("datastore", &datastore::ROUTER)
|
|
|
|
];
|
|
|
|
|
|
|
|
pub const ROUTER: Router = Router::new()
|
|
|
|
.get(&list_subdirs_api_method!(SUBDIRS))
|
|
|
|
.subdirs(SUBDIRS);
|