labrador 0.2.3

Labrador - Mini thirdpart client for rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! 常量类

pub static GRANT_TYPE: &str = "grant_type";
pub static CODE: &str = "code";
pub static CLIENT_CREDENTIAL: &str = "client_credential";
pub static APPID: &str = "appid";
pub static OPENID: &str = "openid";
pub static LANG: &str = "lang";
pub static ZH_CN: &str = "zh_CN";
pub static SECRET: &str = "secret";
pub static ACCESS_TOKEN: &str = "access_token";
pub static ACCEPT: &str = "Accept";
pub static AUTHORIZATION: &str = "Authorization";
pub static CONTENT_TYPE_JSON: &str = "application/json";