This commit is contained in:
xds
2026-02-02 16:15:17 +03:00
commit e6aad48e72
21 changed files with 631 additions and 0 deletions

8
models/Character.py Normal file
View File

@@ -0,0 +1,8 @@
from pydantic import BaseModel
class Character(BaseModel):
id: int | None
name: str
character_image: bytes
character_bio: str

0
models/__init__.py Normal file
View File