Merge branch 'develop'

This commit is contained in:
2026-06-10 19:27:05 +03:00
9 changed files with 120 additions and 1 deletions

View File

@@ -34,3 +34,11 @@ class IUserRepository(ABC):
@abstractmethod
async def count_individuals(self, *, query: str) -> int:
raise NotImplementedError
@abstractmethod
async def get_password_hash(self, user_id: str) -> str:
raise NotImplementedError
@abstractmethod
async def set_password(self, user_id: str, password_hash: str) -> UserEntity:
raise NotImplementedError