git add .

git commit -m "feat: improve wheel UI with gold pointer and center circle sync"
This commit is contained in:
2026-05-30 13:29:48 +03:30
parent 1618580439
commit ed82bf7f1f
27 changed files with 137 additions and 1155 deletions

View File

@@ -1,20 +1,11 @@
from pydantic import BaseModel
class ItemCreate(BaseModel):
title: str
value: int
class ItemUpdate(BaseModel):
title: str
value: int
class ItemResponse(BaseModel):
id: int
title: str
value: int
class Config:
from_attributes = True