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