hesabixArc/hesabixAPI/adapters/db/models/__init__.py

12 lines
412 B
Python
Raw Normal View History

from adapters.db.session import Base # re-export Base for Alembic
# Import models to register with SQLAlchemy metadata
from .user import User # noqa: F401
from .api_key import ApiKey # noqa: F401
from .captcha import Captcha # noqa: F401
from .password_reset import PasswordReset # noqa: F401
2025-09-19 10:09:33 +03:30
from .business import Business # noqa: F401
2025-09-19 14:34:43 +03:30
from .business_permission import BusinessPermission # noqa: F401