wechat-mp-sdk 0.3.0

WeChat Mini Program SDK for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! WeChat HTTP Client module
//!
//! This module contains the WechatClient and related types.

mod wechat_client;
pub use wechat_client::{WechatClient, WechatClientBuilder};

mod wechat_mp;
pub use wechat_mp::WechatMp;

mod builder;
pub use builder::WechatMpBuilder;