mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-11-26 11:43:08 +03:00
10 lines
223 B
Python
10 lines
223 B
Python
from app import app
|
|
from flask import Response
|
|
|
|
|
|
@app.route("/error-output-decompress")
|
|
def error_output_decompress():
|
|
headers = {}
|
|
headers["Content-Encoding"] = "gzip"
|
|
return Response("Hello", headers=headers)
|