mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-11-27 08:19:22 +03:00
8 lines
116 B
Python
8 lines
116 B
Python
from app import app
|
|
from flask import Response
|
|
|
|
|
|
@app.route("/include")
|
|
def include():
|
|
return Response("Hello")
|