mirror of
https://git.proxmox.com/git/proxmox
synced 2025-04-28 11:44:39 +00:00
21 lines
351 B
Rust
21 lines
351 B
Rust
#![cfg_attr(docsrs, feature(doc_cfg, doc_auto_cfg))]
|
|
|
|
pub mod types;
|
|
|
|
#[cfg(feature = "impl")]
|
|
pub mod acl;
|
|
|
|
#[cfg(feature = "impl")]
|
|
pub mod init;
|
|
|
|
#[cfg(feature = "impl")]
|
|
pub mod token_shadow;
|
|
|
|
#[cfg(feature = "impl")]
|
|
pub mod user;
|
|
|
|
#[cfg(feature = "impl")]
|
|
mod cached_user_info;
|
|
#[cfg(feature = "impl")]
|
|
pub use cached_user_info::CachedUserInfo;
|