xrutes 0.1.3

Routing and event handling
Documentation
1
2
3
4
5
6
7
8
9
10
pub fn err_code_to_msg(code: i32) -> &'static str {
    match code {
        40010 => "系统内部错误",
        40011 => "系统内部错误",
        40012 => "系统内部错误",
        40013 => "系统内部错误",
        40004 => "接口未找到",
        _ => "数据请求失败"
    }
}