fuga_remo_api/lib.rs
1// main source file of remo-api crate
2// Copyright 2022-2023 Kenta Ida
3// SPDX-License-Identifier: MIT
4//
5
6//! # Unofficial Rust implementation of Remo Cloud API parser.
7//!
8//! ## 概要
9//!
10//! Nature RemoシリーズのCloud APIが返すJSONデータを解析し、各種情報を取り出すためのライブラリ (非公式)
11//!
12
13#![no_std]
14pub mod config;
15mod device;
16mod appliances;
17mod common_types;
18mod node_key;
19mod parser_options;
20
21pub use device::*;
22pub use appliances::*;
23pub use common_types::*;
24pub use parser_options::ParserOptions;