web2-hw1/backend/app/dependencies.py
2023-01-03 17:46:56 +03:00

7 lines
193 B
Python

from sqlalchemy.ext.asyncio import AsyncSession
from app.models import async_session
async def get_session() -> AsyncSession:
async with async_session() as session:
yield session