feat(weather): add hail precipitation variant

This commit is contained in:
2026-07-02 02:59:49 +03:00
parent a3fab92e3d
commit 13a70990e5
7 changed files with 124 additions and 8 deletions

View File

@@ -37,6 +37,7 @@ class Precipitation(StrEnum):
SHOWER = auto()
SNOW = auto()
HEAVY_SNOW = auto()
HAIL = auto()
class Sky(Model):