rsiot/components/cmp_tsdb_reader/mod.rs
1//! Компонент cmp_timescaledb_reader
2
3mod component;
4mod config;
5mod error;
6mod fn_process;
7mod prepare_sql_statement;
8mod tasks;
9
10pub use component::{COMPONENT_NAME, Cmp};
11pub use config::{Config, ConfigItem};
12pub use error::Error;
13
14type Result<T> = std::result::Result<T, Error>;