1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! use open_wechat::client::Client;
//! use open_wechat::client::authenticate::Authenticate;
//!
//! let client = Client::new("app_id", "secret");
//! let session = client.authenticate("code").await?;

#![warn(
    clippy::all,
    nonstandard_style,
    future_incompatible,
    missing_debug_implementations
)]
#![forbid(unsafe_code)]

pub mod client;
pub mod credentials;
pub mod error;