mirror of
https://git.proxmox.com/git/proxmox
synced 2025-06-19 17:19:49 +00:00

gated behind feature "client-trait" Signed-off-by: Fabian Grünbichler <f.gruenbichler@proxmox.com>
21 lines
445 B
Rust
21 lines
445 B
Rust
//! HTTP related utilities used by various Proxmox products.
|
|
|
|
#[cfg(feature = "websocket")]
|
|
pub mod websocket;
|
|
|
|
#[cfg(feature = "http-helpers")]
|
|
pub mod uri;
|
|
|
|
#[cfg(feature = "http-helpers")]
|
|
pub mod proxy_config;
|
|
#[cfg(feature = "http-helpers")]
|
|
pub use proxy_config::ProxyConfig;
|
|
|
|
#[cfg(feature = "client")]
|
|
pub mod client;
|
|
|
|
#[cfg(feature = "client-trait")]
|
|
mod client_trait;
|
|
#[cfg(feature = "client-trait")]
|
|
pub use client_trait::HttpClient;
|