src/api2/config/job.rs: add job api

This commit is contained in:
Dietmar Maurer
2020-05-21 10:14:26 +02:00
parent b4900286ce
commit b1d4edc769
2 changed files with 279 additions and 0 deletions

View File

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