vector/common/http/
mod.rs

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

#[cfg(feature = "sources-utils-http-error")]
mod error;

#[cfg(feature = "sources-utils-http-error")]
pub use error::ErrorMessage;