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

7 lines
176 B
Python

"""SQLAlchemy models package."""
from app.models.auth import AuthSession, AuthUser
from app.models.location import Location
__all__ = ["AuthSession", "AuthUser", "Location"]