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