init commit
This commit is contained in:
17
app/models/__init__.py
Normal file
17
app/models/__init__.py
Normal 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",
|
||||
]
|
||||
Reference in New Issue
Block a user