open-meteo-cli/src/ip_location.rs

9 lines
163 B
Rust
Raw Normal View History

2023-06-17 13:36:20 +02:00
use serde::{Deserialize, Serialize};
#[derive(Serialize, Deserialize, Debug)]
pub struct IpLocation {
pub lat: f64,
pub lon: f64,
pub city: String,
}