rsiot_http_server/lib.rs
1//! Компонент для получения данных через HTTP server.
2//!
3//! Ссылки:
4//!
5//! - [Документация docs.rs](https://docs.rs/rsiot-http-server/latest/)
6//!
7//! - [Репозиторий GitHub](https://github.com/Konstantin-Dudersky/rsiot/tree/main/rsiot-http-server)
8//!
9//! - [Примеры](https://github.com/Konstantin-Dudersky/rsiot/tree/main/rsiot-http-server/examples)
10//!
11#![doc = include_str!("../doc/api_description.md")]
12//!
13//! ## Пример
14//!
15//! ```rust
16#![doc = include_str!("../examples/http-server-example.rs")]
17//! ```
18//!
19//! ## Тестирование
20//!
21//! См. папку .bruno
22//!
23
24#![cfg(any(target_arch = "x86_64", target_arch = "aarch64"))]
25
26mod component;
27mod config;
28mod error;
29mod fn_process;
30mod routes;
31mod shared_state;
32
33pub use component::Cmp;
34pub use config::Config;