uow and di basic implementation

This commit is contained in:
2024-03-06 03:59:16 +03:00
parent 8d93c964e1
commit f9631a712b
11 changed files with 50 additions and 19 deletions

View File

@@ -0,0 +1,11 @@
from uuid import UUID
from pydantic import BaseModel
class UserSchema(BaseModel):
id: UUID
name: str
class Config:
from_attributes = True