11 lines
321 B
Go
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"`
|
|
}
|