mirror of
https://git.proxmox.com/git/proxmox
synced 2025-06-09 13:40:52 +00:00
10 lines
201 B
Rust
10 lines
201 B
Rust
#![cfg_attr(docsrs, feature(doc_cfg, doc_auto_cfg))]
|
|
|
|
mod api_types;
|
|
pub use api_types::*;
|
|
|
|
#[cfg(feature = "impl")]
|
|
mod journal;
|
|
#[cfg(feature = "impl")]
|
|
pub use journal::{dump_journal, dump_syslog};
|