mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-12-18 08:02:12 +03:00
8 lines
174 B
Python
8 lines
174 B
Python
from app import app
|
|
from flask import request
|
|
|
|
|
|
@app.route("/no-output")
|
|
def no_output():
|
|
return app.response_class(headers={"date": "DATE1"}, response="Hello world!\n")
|