labrador 0.2.3

Labrador - Mini thirdpart client for rust.
Documentation
//! 常量类

pub static SIGN_METHOD: &str = "sign_method";
pub static ERROR_RESPONSE_KEY: &str = "error_response";
pub const SIGN_TYPE_MD5: &str = "md5";

pub static METHOD: &str = "method";
// pub static PARTNER_ID: &str = "partner_id";
// pub static SESSION: &str = "session";

pub static TIMESTAMP: &str = "timestamp";

pub static VERSION: &str = "v";
pub static VERSION_2: &str = "2.0";

pub static APP_KEY: &str = "app_key";

pub static SIGN: &str = "sign";
pub static FORMAT: &str = "format";

//-----===-------///

/**
 * JSON 应格式
 */
pub static FORMAT_JSON: &str = "json";

/**
 * Time格式
 */
pub static FORMAT_TIME: &str = "%Y-%m-%d %H:%M:%S";