fermentord/pkg/temperature/temperature.go

10 lines
175 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
Sensor string `json:"sensor"`
Time time.Time `json:"time"`
Degrees float64 `json:"degrees"`
2021-09-30 18:36:41 +00:00
}