mirror of
https://git.proxmox.com/git/proxmox
synced 2025-10-18 19:28:12 +00:00
14 lines
273 B
Rust
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};
|