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