mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-12-19 00:22:10 +03:00
9 lines
158 B
Python
9 lines
158 B
Python
# coding=utf-8
|
|
from app import app
|
|
from flask import Response
|
|
|
|
|
|
@app.route("/continue-on-error")
|
|
def continue_on_error():
|
|
return Response("", status=200)
|