13 lines
349 B
Python
13 lines
349 B
Python
from services.base import Base
|
|
from models.ability_estimation import AbilityEstimation
|
|
|
|
class AbilityEstimationService(Base):
|
|
ACTION = 'abilityEstimation'
|
|
|
|
def process(self):
|
|
attributes = self.service_attributes()
|
|
ability_estimation = AbilityEstimation.parse_obj(attributes)
|
|
results = ability_estimation.calculate()
|
|
|
|
return None
|