mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-11-24 04:31:37 +03:00
13 lines
172 B
Python
13 lines
172 B
Python
from flask import Flask
|
|
from flask import request
|
|
|
|
app = Flask(__name__)
|
|
|
|
@app.route('/hello')
|
|
def hello():
|
|
return 'Hello World!'
|
|
|
|
app.run(host='0.0.0.0', port=8000)
|
|
|
|
|