Files
location_service/app/repositories/owner_repo.py
exolonConfidental a77788fc47 endpoint setup
2026-02-08 11:18:47 +05:30

8 lines
221 B
Python

class OwnerRepository:
@staticmethod
async def update(session, owner, data: dict):
for key, value in data.items():
setattr(owner, key, value)
await session.flush()
return owner