deboa_compio/client/http/mod.rs
1//! Core HTTP client implementation for Deboa.
2//!
3//! This module provides the main HTTP client functionality, including connection management
4//! and request/response handling. It's the central component for making HTTP requests
5//! in the Deboa library.
6
7/// Connection management functionality for the Deboa HTTP client.
8pub mod conn;
9
10#[cfg(feature = "http1")]
11pub(crate) mod http1;
12#[cfg(feature = "http2")]
13pub(crate) mod http2;
14#[cfg(feature = "http3")]
15pub(crate) mod http3;