Create qhelp example

This commit is contained in:
jorgectf
2021-04-09 01:26:28 +02:00
parent ce3fb6be21
commit 789c5857fa

View File

@@ -0,0 +1,9 @@
from flask import Response, request, Flask, make_response
@app.route("/flask_Response")
def flask_Response():
rfs_header = request.args["rfs_header"]
response = Response()
response.headers['HeaderName'] = rfs_header
return response