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

9 lines
149 B
Python

from abc import ABC, abstractmethod
class IUserController(ABC):
@abstractmethod
async def batch_import(self, batch):
pass