Files
encoach_backend/app/services/abc/user.py
2024-11-06 11:01:39 +00:00

11 lines
209 B
Python

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