storage-service/storage_service/views/object_view.py

10 lines
170 B
Python

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