Files
encoach_backend/ielts_be/services/abc/user.py

11 lines
214 B
Python

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