Skip to main content

rsiot/components/cmp_svg/
mod.rs

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