serper_sdk/core/
mod.rs

1/// Core module containing fundamental types and error handling
2///
3/// This module provides the foundational components used throughout the SDK.
4pub mod error;
5pub mod types;
6
7pub use error::{Result, SerperError};
8pub use types::{ApiKey, BaseUrl, Location, Pagination};