Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- async def get_asyncpg_session() -> AsyncIterator[AsyncSession]:
- async with AsyncSession(
- async_engine,
- expire_on_commit=False,
- ) as session:
- async with session.begin():
- yield session
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement