From 7d37200b906dbc7b030ac8380e31507a1a169645 Mon Sep 17 00:00:00 2001 From: jinsu Date: Thu, 4 Dec 2025 22:52:59 +0900 Subject: [PATCH] define WeatherCondition --- internal/pkg/domain/weather_condition.go | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 internal/pkg/domain/weather_condition.go diff --git a/internal/pkg/domain/weather_condition.go b/internal/pkg/domain/weather_condition.go new file mode 100644 index 0000000..dea11f1 --- /dev/null +++ b/internal/pkg/domain/weather_condition.go @@ -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" +)