1//! Коммуникация с модулем PM-DI16 2 3mod config; 4mod device; 5mod error; 6mod tasks; 7 8pub use config::Config; 9pub use device::Device; 10pub use error::Error; 11 12type Result<T> = std::result::Result<T, Error>;