İlk commit: Stepstead backend (FastAPI)
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
commit
ea049b8ccd
45 changed files with 6751 additions and 0 deletions
9
models/__init__.py
Normal file
9
models/__init__.py
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
from .database import AsyncSessionLocal, Base, engine, get_db
|
||||
from .character import Character, Skill
|
||||
from .auth import PasswordResetToken, Role, User
|
||||
|
||||
__all__ = [
|
||||
"Base", "engine", "AsyncSessionLocal", "get_db",
|
||||
"User", "PasswordResetToken", "Role",
|
||||
"Character", "Skill",
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue