mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-12-18 08:02:12 +03:00
10 lines
175 B
Python
10 lines
175 B
Python
from app import app
|
|
from flask import request
|
|
|
|
|
|
@app.route("/proxy")
|
|
def proxy():
|
|
print(request.headers)
|
|
assert request.headers["From-Proxy"] == "Hello"
|
|
return ""
|