move src/api2/config/network.rs to src/api2/node/network.rs

So that we have the same api path for network config as pve.
This commit is contained in:
Dietmar Maurer
2020-04-25 17:00:38 +02:00
parent 1ca540a63b
commit 26d9aebc28
5 changed files with 385 additions and 382 deletions

View File

@ -3,11 +3,9 @@ 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),
];