rsiot/components/cmp_svg/
mod.rs1mod 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>;