mirror of
https://git.proxmox.com/git/proxmox
synced 2025-06-20 16:50:11 +00:00
15 lines
294 B
Rust
15 lines
294 B
Rust
#![cfg_attr(docsrs, feature(doc_cfg, doc_auto_cfg))]
|
|
|
|
mod api_types;
|
|
pub use api_types::*;
|
|
|
|
#[cfg(feature = "impl")]
|
|
mod config;
|
|
#[cfg(feature = "impl")]
|
|
pub use config::*;
|
|
|
|
#[cfg(feature = "impl")]
|
|
mod api_impl;
|
|
#[cfg(feature = "impl")]
|
|
pub use api_impl::{create_interface, update_interface};
|