define WeatherCondition
This commit is contained in:
12
internal/pkg/domain/weather_condition.go
Normal file
12
internal/pkg/domain/weather_condition.go
Normal file
@@ -0,0 +1,12 @@
|
||||
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"
|
||||
)
|
||||
Reference in New Issue
Block a user