Files
seven-skies/internal/pkg/domain/weather_condition.go
2025-12-04 22:58:57 +09:00

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"
)