mirror of
https://github.com/github/codeql.git
synced 2026-04-30 19:26:02 +02:00
Create qhelp example
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user