irt-service/app/services/ability_estimation_service.py
2023-09-05 18:25:51 +00:00

10 lines
207 B
Python

import logging
from services.base import Base
class AbilityEstimationService(Base):
ACTION = 'abilityEstimation'
def process(self):
logging.info('Ability Estimation Service to be implemented...')