feat: add avatars

This commit is contained in:
2026-05-14 23:46:26 +03:00
parent 20ddb196ff
commit d426b02d25
26 changed files with 857 additions and 162 deletions

View File

@@ -36,4 +36,8 @@ class IUserRepository(ABC):
@abstractmethod
async def email_exists(self, email: str) -> bool:
raise NotImplementedError
raise NotImplementedError
@abstractmethod
async def set_avatar_link(self, user_id: str, avatar_link: str) -> UserEntity:
raise NotImplementedError