vector/common/http/mod.rs
1//! Common module between modules that use HTTP
2#[cfg(all(
3 feature = "sources-utils-http-auth",
4 feature = "sources-utils-http-error"
5))]
6pub mod server_auth;
7
8#[cfg(feature = "sources-utils-http-error")]
9mod error;
10
11#[cfg(feature = "sources-utils-http-error")]
12pub use error::ErrorMessage;