proxmox_api/
lib.rs

1pub mod client;
2
3mod path;
4pub use path::{Path, PathElement};
5
6pub mod types;
7
8mod generated;
9pub use generated::*;
10
11#[cfg(feature = "reqwest-client")]
12mod reqwest_client;
13
14#[cfg(feature = "reqwest-client")]
15pub use reqwest_client::Client as ReqwestClient;