initial commit

This commit is contained in:
2026-05-09 22:21:38 +03:30
commit b7f8704e98
15 changed files with 148 additions and 0 deletions

11
backend/schemas.py Normal file
View File

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