22 lines
531 B
Python
22 lines
531 B
Python
from api.repository.user import UserRepository
|
|
|
|
|
|
class UnitOfWork:
|
|
def __init__(self, session_factory):
|
|
self.session_factory = session_factory
|
|
|
|
async def __aenter__(self):
|
|
self.session = self.session_factory()
|
|
|
|
self.users = UserRepository(self.session)
|
|
|
|
async def __aexit__(self, *args):
|
|
await self.session.rollback()
|
|
await self.session.close()
|
|
|
|
async def commit(self):
|
|
await self.session.commit()
|
|
|
|
async def rollback(self):
|
|
await self.session.rollback()
|