(self, uid: int, data: dict[str, Any])
| 20 | return await self.user_repository.create(data=data) |
| 21 | |
| 22 | async def update(self, uid: int, data: dict[str, Any]) -> User: |
| 23 | return await self.user_repository.update(uid=uid, data=data) |
| 24 | |
| 25 | async def one( |
| 26 | self, |
no outgoing calls
no test coverage detected