from app.core.database import SessionLocal 


async def get_session():
    with SessionLocal() as session:
        yield session 