()
| 35 | |
| 36 | @app.route("/json/", methods=["POST"]) |
| 37 | async def json() -> ResponseReturnValue: |
| 38 | data = await request.get_json() |
| 39 | return jsonify(data) |
| 40 | |
| 41 | @app.route("/implicit_json/", methods=["POST"]) |
| 42 | async def implicit_json() -> ResponseReturnValue: |