fermentord/pkg/temperature/temperature.go

10 lines
209 B
Go

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