//! Transport layer implementations for the Session network.
//!
//! Provides:
//! - abstract [`Transport`] trait + request / response types (see
//! [`transport`] module).
//! - [`HttpTransport`] — `reqwest`-based HTTP transport that accepts
//! self-signed snode certificates (matches Android
//! `createRegularNodeOkHttpClient`).
//! - [`MockTransport`] — test-only mock transport returning canned responses.
//! - `quic` — QUIC transport skeleton (full implementation is future work).
/// Transport trait and request/response types.
/// HTTPS transport implementation using `reqwest`.
/// Mock transport for unit tests.
/// QUIC transport implementation using quinn.
/// Bundled Session seed-node CA certificates (pinned — implementation detail).
pub
pub use HttpTransport;
pub use ;
pub use ;