github.com/deadlysurgeon/weather@v0.0.0-20240402201029-3925d9f784b1/weather/models.go (about)

     1  package weather
     2  
     3  // Report is what we return after consuming from the weather report.
     4  type Report struct {
     5  	Condition      string  `json:"condition"`
     6  	Temperature    string  `json:"temperature"`
     7  	TemperatureRaw float32 `json:"temperature_raw"`
     8  }