package services import ( "time" ) type WeightLog struct { ID uint64 `json:"id"` UserID uint64 `json:"userId"` Value float64 `json:"value"` RecordedTS time.Time `json:"recordedTs"` }