fache 0.1.351

发车工具箱
Documentation
use serde::{Deserialize, Serialize};

// 经纬度 转 地址信息 
// https://lbs.qq.com/service/webService/webServiceGuide/address/Gcoder
pub mod tmap;
pub mod jwd_adds_type;
pub mod adds_jwd_type;
pub mod ip_to_info_type;
pub mod jwd_to_qmap;
pub mod adcode_or_jwd_to_weather;
/// 坐标信息
#[derive(Serialize, Deserialize, Debug, Clone)]
pub struct Location {
    /// 纬度
    pub lat: f64,
    /// 经度
    pub lng: f64,
}