1use rust_wechat_core::WechatError; 2 3pub mod message; 4pub mod error; 5 6pub type Result<T> = std::result::Result<T, error::WorkError>;