# app/modules/customers/models/__init__.py """ Customers module database models. This is the canonical location for customer models. Module models are automatically discovered and registered with SQLAlchemy's Base.metadata at startup. Usage: from app.modules.customers.models import ( Customer, CustomerAddress, PasswordResetToken, ) """ from app.modules.customers.models.customer import ( Customer, CustomerAddress, ) from app.modules.customers.models.password_reset_token import PasswordResetToken __all__ = [ "Customer", "CustomerAddress", "PasswordResetToken", ]