api_v1.4/hub_api/workflow/costs.py

15 lines
261 B
Python
Raw Normal View History

from flask_restful import Resource
from hub_api.config import Config
class Costs(Resource, Config):
def __init__(self):
super().__init__()
def post(self):
"""
API call for performing the cost workflow
"""
raise NotImplementedError()