Added base plugin resource

This commit is contained in:
Joel Collins 2019-12-16 16:20:13 +00:00
parent 469e8218e0
commit 2b5b0b8744
8 changed files with 299 additions and 60 deletions

View file

@ -0,0 +1,9 @@
from flask.views import MethodView
class Resource(MethodView):
"""Currently identical to MethodView
"""
def __init__(self, *args, **kwargs):
MethodView.__init__(self, *args, **kwargs)