1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
mod config;
mod errors;
mod new;
mod process;
mod types;

#[doc = include_str!("../README.md")]
///
/// # Диаграмма
///
#[doc = include_str!("../doc/component-modbus-client.svg")]
///
/// # Пример
///
/// ```rust
#[doc = include_str!("../examples/modbus_tcp_client.rs")]
/// ```
pub mod cmp_modbus_client {
    pub use crate::new::new;
    pub use rsiot_components_config::modbus_client::*;
}

pub use rsiot_component_core::ComponentChain;
pub use rsiot_messages_core::IMessage;