11 lines
213 B
Python
11 lines
213 B
Python
from abc import ABC, abstractmethod
|
|
|
|
from app.dtos.user_batch import BatchUsersDTO
|
|
|
|
|
|
class IUserController(ABC):
|
|
|
|
@abstractmethod
|
|
async def batch_import(self, batch: BatchUsersDTO):
|
|
pass
|