/ backend / models / __init__.py
__init__.py
 1  """
 2  SQLAlchemy ORM models.
 3  
 4  Import all models here so they're registered with SQLAlchemy.
 5  """
 6  from models.user import User
 7  from models.housing_post import HousingPost
 8  from models.response import Response
 9  from models.notification_preference import NotificationPreference
10  
11  __all__ = ["User", "HousingPost", "Response", "NotificationPreference"]
12