mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-12-19 17:01:36 +03:00
14 lines
221 B
Python
14 lines
221 B
Python
|
from app import app
|
||
|
from flask import Response
|
||
|
|
||
|
|
||
|
@app.route("/predicates-number")
|
||
|
def predicates_number():
|
||
|
return Response(
|
||
|
"""{
|
||
|
"integer": 1,
|
||
|
"float": 1.0
|
||
|
}""",
|
||
|
mimetype="application/json",
|
||
|
)
|