Skip to main content

rsiot/components/cmp_inject_single/
mod.rs

1//! Шаблон компонента
2
3mod component;
4mod config;
5mod error;
6mod fn_process;
7
8pub use {
9    component::{COMPONENT_NAME, Cmp},
10    config::Config,
11    error::Error,
12};
13
14type Result<T> = std::result::Result<T, Error>;