Files
encoach_backend/app/controllers/abc/reading.py
Carlos Mesquita 3cf9fa5cba Async release
2024-07-23 08:40:35 +01:00

11 lines
234 B
Python

from abc import ABC, abstractmethod
from typing import List
class IReadingController(ABC):
@abstractmethod
async def get_reading_passage(self, passage: int, topic: str, exercises: List[str], difficulty: str):
pass