hko 1.13.0

Rust library for Hong Kong Observatory Open Data API
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright (c) 2021 - 2025 GreenYun Organization
// SPDX-License-Identifier: MIT

//! Weather warnings.
//!
//! Weather warnings contains two types of datasets: informational data and
//! summary.

pub use self::code::*;

mod code;
pub mod info;
pub mod summary;

#[cfg(feature = "test")]
#[cfg(test)]
mod test;