from abc import ABC, abstractmethod from ielts_be.dtos.user_batch import BatchUsersDTO class IUserService(ABC): @abstractmethod async def batch_users(self, batch: BatchUsersDTO): pass