mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-12-18 08:02:12 +03:00
9 lines
146 B
Python
9 lines
146 B
Python
# coding=utf-8
|
|
from app import app
|
|
from flask import Response
|
|
|
|
|
|
@app.route("/fail-at-end")
|
|
def fail_at_end():
|
|
return Response("", status=200)
|