proxmox/proxmox-dns-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

10 lines
183 B
Rust

#![cfg_attr(docsrs, feature(doc_cfg, doc_auto_cfg))]
mod api_types;
pub use api_types::*;
#[cfg(feature = "impl")]
mod resolv_conf;
#[cfg(feature = "impl")]
pub use resolv_conf::*;