13 lines
379 B
Go
13 lines
379 B
Go
package domain
|
|
|
|
type WeatherCondition string
|
|
|
|
const (
|
|
WeatherConditionUnknown WeatherCondition = "UNKNOWN"
|
|
WeatherConditionClear WeatherCondition = "CLEAR"
|
|
WeatherConditionCloudy WeatherCondition = "CLOUDY"
|
|
WeatherConditionRain WeatherCondition = "RAIN"
|
|
WeatherConditionSnow WeatherCondition = "SNOW"
|
|
WeatherConditionRainSnow WeatherCondition = "RAIN_SNOW"
|
|
)
|