Created skeleton
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2020-03-25 00:19:12 +01:00
parent db72904b62
commit 453b686cbe
12 changed files with 111 additions and 21 deletions

View File

@ -0,0 +1,2 @@
#!/usr/bin/env python3
from .object_view import ObjectView

View File

@ -0,0 +1,9 @@
#!/usr/bin/env python3
from flask import jsonify
from flask_classful import FlaskView
class ObjectView(FlaskView):
def post(self):
return jsonify({}), 200