1//! 微信小程序模块
2//! 包含小程序相关API接口(如用户登录、数据缓存等)
3pub mod api;
4pub mod event;
5pub mod client;
6pub mod error;
78type Result<T> = core::result::Result<T, MiniProgramError>;
910pub use error::*;
11pub use client::*;
12pub use api::*;
13pub use rust_wechat_core::client::*;