package models import ( "time" "go.neonxp.ru/objectid" ) type Point struct { ID objectid.ID `json:"id"` UserID objectid.ID `json:"user_id"` Lat float64 `json:"lat"` Lon float64 `json:"lon"` Time time.Time `json:"time"` Speed float64 `json:"speed"` Direction float64 `json:"direction"` Accuracy float64 `json:"accuracy"` }