openflexure-microscope-server/openflexure_microscope/common/labthings/resource.py
2019-12-16 16:20:13 +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)