fermentord/pkg/temperature/temperature.go

11 lines
209 B
Go
Raw Normal View History

2021-09-30 18:36:41 +00:00
package temperature
import "time"
type TemperatureReading struct {
2022-03-11 19:46:18 +00:00
Time time.Time `json:"time"`
2022-03-15 20:07:53 +00:00
Ambient float64 `json:"ambient"`
Chamber float64 `json:"chamber"`
Wort float64 `json:"wort"`
2021-09-30 18:36:41 +00:00
}