mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-11-23 09:44:22 +03:00
8 lines
233 B
Python
8 lines
233 B
Python
from app import app
|
|
from flask import Response
|
|
|
|
|
|
@app.route("/float")
|
|
def float():
|
|
return "[ -2.2, 0.0, 0.0000000000000001, 0.000000000000001, 0.333, 0.3333333333333333, 0.333333333333333333, 1.0, 1.001, 1.07, 1.070, 1.1, 1.5 ]"
|