proxmox/proxmox-system-management-api/src/network/mod.rs
Dietmar Maurer b082d7dafa system-management-api: network: add create_interface and update_interface
Signed-off-by: Dietmar Maurer <dietmar@proxmox.com>
2024-05-16 10:24:41 +02:00

14 lines
273 B
Rust

mod api_types;
pub use api_types::*;
#[cfg(feature = "network-impl")]
mod config;
#[cfg(feature = "network-impl")]
pub use config::*;
#[cfg(feature = "network-impl")]
mod api_impl;
#[cfg(feature = "network-impl")]
pub use api_impl::{create_interface, update_interface};