Forgot a print

This commit is contained in:
Carlos-Mesquita
2024-12-11 15:31:35 +00:00
parent 196f9e9c3e
commit fa028aa0e7

View File

@@ -7,7 +7,6 @@ class UserController(IUserController):
def __init__(self, user_service: IUserService):
self._service = user_service
print(self._service)
async def batch_import(self, batch: BatchUsersDTO):
return await self._service.batch_users(batch)