LS8's picture
Upload folder using huggingface_hub
847db01 verified
raw
history blame contribute delete
269 Bytes
from collections.abc import AsyncGenerator
from sqlalchemy.ext.asyncio import AsyncSession
from src.db.session import async_session_factory
async def get_db() -> AsyncGenerator[AsyncSession]:
async with async_session_factory() as session:
yield session