mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-11-23 09:44:22 +03:00
18 lines
314 B
Python
18 lines
314 B
Python
from flask import request
|
|
from app import app
|
|
|
|
|
|
@app.route("/predicates-string")
|
|
def predicates_string():
|
|
return "Hello World!"
|
|
|
|
|
|
@app.route("/predicates-string-empty")
|
|
def predicates_string_empty():
|
|
return ""
|
|
|
|
|
|
@app.route("/predicates-string-unicode")
|
|
def predicates_string_unicode():
|
|
return "\u2708"
|