2019-04-16 18:19:04 -07:00
|
|
|
#-----------------------------------------------------------------------------------------
|
|
|
|
|
# Copyright (c) Microsoft Corporation. All rights reserved.
|
|
|
|
|
# Licensed under the MIT License. See LICENSE in the project root for license information.
|
|
|
|
|
#-----------------------------------------------------------------------------------------
|
|
|
|
|
|
2019-04-26 16:03:42 +00:00
|
|
|
from flask import Flask
|
|
|
|
|
app = Flask(__name__)
|
2019-04-19 13:47:02 -07:00
|
|
|
|
2019-04-26 16:03:42 +00:00
|
|
|
@app.route("/")
|
|
|
|
|
def hello():
|
|
|
|
|
return app.send_static_file("index.html")
|