google_places_api/
lib.rs

1pub mod types;
2pub mod endpoints;
3
4mod tests;
5
6/**
7The library provides a comprehensive Rust interface for interacting with the Google Places API.
8It supports various functionalities such as text search, nearby search, place details retrieval,
9and find place operations. Users can query places based on different criteria like location, types,
10and input types, while obtaining detailed information such as business status, address,
11and user ratings. The API is designed with asynchronous support to handle network operations
12efficiently, and includes serialization and deserialization capabilities for seamless data
13exchange. This library is ideal for developers looking to integrate Google Places services
14into their Rust applications.
15
16*/
17
18pub use endpoints::api::GooglePlacesAPI;