rsiot/components/cmp_telegram/
mod.rs

1//! Отправка сообщений в телеграм
2
3mod component;
4mod config;
5mod error;
6mod fn_process;
7mod tasks;
8mod telegram_bot;
9
10pub use component::Cmp;
11pub use config::Config;
12pub use error::Error;
13
14type Result<T> = std::result::Result<T, Error>;
15use telegram_bot::TelegramBot;