Søren Rasmussen
648996476d
All checks were successful
continuous-integration/drone/push Build is passing
13 lines
257 B
Go
13 lines
257 B
Go
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"`
|
|
}
|