mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-11-23 09:44:22 +03:00
16 lines
273 B
Python
16 lines
273 B
Python
from app import app
|
|
from flask import Response
|
|
|
|
|
|
@app.route("/assert-match")
|
|
def assert_match():
|
|
return Response(
|
|
"""{
|
|
"date1": "2014-01-01",
|
|
"date2": "x2014-01-01",
|
|
"path1": "aa/bb",
|
|
"path2": "aa\\\\bb"
|
|
}""",
|
|
mimetype="application/json",
|
|
)
|