Files
home-automation/app/models/__init__.py
T

7 lines
176 B
Python
Raw Normal View History

2026-04-19 20:19:58 +02:00
"""SQLAlchemy models package."""
2026-04-20 15:16:47 +02:00
from app.models.auth import AuthSession, AuthUser
from app.models.location import Location
2026-04-20 15:16:47 +02:00
__all__ = ["AuthSession", "AuthUser", "Location"]