feat: add import

This commit is contained in:
2026-06-04 18:09:06 +03:00
parent 62a48c3f70
commit aabea07293
8 changed files with 21 additions and 19 deletions

View File

@@ -5,7 +5,7 @@ from src.application.domain.entities.admin_user import AdminUserEntity
class IAdminUserRepository(ABC):
@abstractmethod
async def get_by_email(self, email: str) -> AdminUserEntity:
async def get_by_login(self, login: str) -> AdminUserEntity:
raise NotImplementedError
@abstractmethod