proxmox/proxmox-network-api/src/lib.rs
Wolfgang Bumiller 0652d81977 tree-wide: enable doc_cfg and doc_auto_cfg for docs
Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
2024-07-02 11:59:53 +02:00

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};