Files
encoach_backend/app/services/abc/exam/grade.py
2024-10-01 19:31:01 +01:00

14 lines
301 B
Python

from abc import ABC, abstractmethod
from typing import Dict, List
class IGradeService(ABC):
@abstractmethod
async def grade_short_answers(self, data: Dict):
pass
@abstractmethod
async def calculate_grading_summary(self, extracted_sections: List):
pass