init commit

This commit is contained in:
2026-01-26 15:08:24 -06:00
commit 67225a725a
33 changed files with 3350 additions and 0 deletions

17
app/models/__init__.py Normal file
View File

@@ -0,0 +1,17 @@
"""Data models for weather alerts."""
from app.models.weather import HourlyForecast, WeatherForecast, WeatherAlert
from app.models.alerts import AggregatedAlert, AlertRules, AlertType, TriggeredAlert
from app.models.state import AlertState, SentAlertRecord
__all__ = [
"HourlyForecast",
"WeatherForecast",
"WeatherAlert",
"AggregatedAlert",
"AlertRules",
"AlertType",
"TriggeredAlert",
"AlertState",
"SentAlertRecord",
]