fermentord/pkg/temperature/temperature.go

15 lines
283 B
Go

package temperature
import (
"time"
"github.com/gofrs/uuid"
)
type TemperatureReading struct {
Time time.Time `json:"time"`
BrewUUID uuid.UUID `json:"brew_uuid"`
Ambient float64 `json:"ambient"`
Chamber float64 `json:"chamber"`
Wort float64 `json:"wort"`
}