serper_sdk/http/mod.rs
1pub mod client;
2/// HTTP module containing transport and client functionality
3///
4/// This module provides HTTP transport layer abstractions and high-level
5/// client functionality for interacting with the Serper API.
6pub mod transport;
7
8pub use client::{SerperHttpClient, SerperHttpClientBuilder};
9pub use transport::{HttpTransport, HttpTransportBuilder, TransportConfig};