open-meteo-cli/src/ip_location.rs
Jorge Bolois 0c3a3126f8
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Adding cache for IpLocation
2023-06-17 13:36:20 +02:00

9 lines
163 B
Rust

use serde::{Deserialize, Serialize};
#[derive(Serialize, Deserialize, Debug)]
pub struct IpLocation {
pub lat: f64,
pub lon: f64,
pub city: String,
}