openflexure-microscope-server/openflexure_microscope/common/flask_labthings/resource.py
2019-12-21 12:10:09 +00:00

9 lines
207 B
Python

from flask.views import MethodView
class Resource(MethodView):
"""Currently identical to MethodView
"""
def __init__(self, *args, **kwargs):
MethodView.__init__(self, *args, **kwargs)