Files
zephyr/types/weather.go
2025-06-17 10:11:10 +02:00

11 lines
321 B
Go

package types
// The Weather data type, representing the weather of a certain city
type Weather struct {
Date *ZephyrDate `json:"date"`
Temperature string `json:"temperature"`
Condition string `json:"condition"`
FeelsLike string `json:"feelsLike"`
Emoji string `json:"emoji"`
}