1
2
3
4
5
6
7
use serde::Serialize;

#[derive(Serialize)]
pub struct GeoPoint {
    lat: f32,
    long: f32
}