1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
// #[macro_use] // extern crate wechat; #[macro_use] extern crate lazy_static; // use awc::Client; mod utils; pub use utils::*; mod errors; pub use errors::*; pub type ChimesResult<T> = Result<T, ChimesError>; pub type Result<T, E = ChimesError> = core::result::Result<T, E>; mod wechat; pub use wechat::*;