Initial commit

This commit is contained in:
2025-12-05 11:27:16 -03:00
commit 804bacfbe3
87 changed files with 7260 additions and 0 deletions

11
app/api/dependencies.py Normal file
View File

@@ -0,0 +1,11 @@
"""
Dependencies para FastAPI
"""
from app.prisma_client import get_db
from prisma import Prisma
async def get_prisma() -> Prisma:
"""Dependency para obtener el cliente Prisma"""
return await get_db()