proxmox-backup/src/bin/proxmox_backup_manager/mod.rs
Dietmar Maurer bfd12e871f Add traffic control configuration config with API
Signed-off-by: Dietmar Maurer <dietmar@proxmox.com>
2021-11-10 10:15:40 +01:00

31 lines
467 B
Rust

mod acl;
pub use acl::*;
mod acme;
pub use acme::*;
mod cert;
pub use cert::*;
mod datastore;
pub use datastore::*;
mod dns;
pub use dns::*;
mod network;
pub use network::*;
mod remote;
pub use remote::*;
mod sync;
pub use sync::*;
mod verify;
pub use verify::*;
mod user;
pub use user::*;
mod subscription;
pub use subscription::*;
mod disk;
pub use disk::*;
mod node;
pub use node::*;
mod openid;
pub use openid::*;
mod traffic_control;
pub use traffic_control::*;