src/api2/config/network.rs: start network configuration api

This commit is contained in:
Dietmar Maurer
2020-04-21 14:28:26 +02:00
parent 904e988667
commit ca0e534796
4 changed files with 125 additions and 4 deletions

View File

@ -3,9 +3,11 @@ use proxmox::list_subdirs_api_method;
pub mod datastore;
pub mod remote;
pub mod network;
const SUBDIRS: SubdirMap = &[
("datastore", &datastore::ROUTER),
("network", &network::ROUTER),
("remote", &remote::ROUTER),
];