package temperature import ( "time" ) type TemperatureReading struct { Time time.Time `json:"time"` BrewUUID string `json:"brew_uuid"` Ambient float64 `json:"ambient"` Chamber float64 `json:"chamber"` Wort float64 `json:"wort"` }