feat: auth & admin
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
"""ORM models package.
|
||||
|
||||
Importing this package registers every model on ``Base.metadata`` so Alembic
|
||||
autogenerate and ``create_all`` (tests) see the full schema. ``alembic/env.py``
|
||||
imports it for exactly this side effect.
|
||||
"""
|
||||
|
||||
from app.infrastructure.db.models.user import RefreshTokenModel, UserModel
|
||||
|
||||
__all__ = ["RefreshTokenModel", "UserModel"]
|
||||
Reference in New Issue
Block a user