15 lines
273 B
Python
15 lines
273 B
Python
|
from flask_restful import Resource
|
||
|
|
||
|
from hub_api.config import Config
|
||
|
|
||
|
|
||
|
class EnergyPlus(Resource, Config):
|
||
|
def __init__(self):
|
||
|
super().__init__()
|
||
|
|
||
|
def post(self):
|
||
|
"""
|
||
|
API call for performing the energy plus workflow
|
||
|
"""
|
||
|
raise NotImplementedError()
|