9 lines
149 B
Python
9 lines
149 B
Python
from abc import ABC, abstractmethod
|
|
|
|
|
|
class IUserController(ABC):
|
|
|
|
@abstractmethod
|
|
async def batch_import(self, batch):
|
|
pass
|