This commit is contained in:
2
storage_service/views/__init__.py
Normal file
2
storage_service/views/__init__.py
Normal file
@ -0,0 +1,2 @@
|
||||
#!/usr/bin/env python3
|
||||
from .object_view import ObjectView
|
9
storage_service/views/object_view.py
Normal file
9
storage_service/views/object_view.py
Normal 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
|
Reference in New Issue
Block a user