13 lines
396 B
Rust
13 lines
396 B
Rust
//! # `OpenWeatherMap` SDK
|
|
//! A Rust SDK for the `OpenWeatherMap` APIs.
|
|
//! It provides abstractions for APIs to enable simple weather data integration into your apps.
|
|
//!
|
|
//! ## Currently Available APIs
|
|
//! - `free_api_v25`: `OpenWeatherMap` Free API v2.5
|
|
//!
|
|
//! ## Coming soon
|
|
//! - `onecall_api_v30`: `OpenWeatherMap` One Call API v3.0
|
|
|
|
pub mod free_api_v25;
|
|
pub mod onecall_api_v30; // WIP
|