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