fermentord/pkg/temperature/temperature.go
Søren Rasmussen 648996476d
All checks were successful
continuous-integration/drone/push Build is passing
Submit brew UUID to dwingest
2022-08-03 20:09:05 +02:00

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"`
}