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;
67pub use error::{Result, SerperError};
8pub use types::{ApiKey, BaseUrl, Location, Pagination};