9 lines
206 B
Python
9 lines
206 B
Python
from abc import ABC, abstractmethod
|
|
|
|
|
|
class IWritingController(ABC):
|
|
|
|
@abstractmethod
|
|
async def get_writing_task_general_question(self, task: int, topic: str, difficulty: str):
|
|
pass
|