mirror of
https://github.com/bensuperpc/infrastructure.git
synced 2024-11-10 04:07:26 +01:00
10 lines
186 B
Python
10 lines
186 B
Python
from flask import Flask
|
|
app = Flask(__name__)
|
|
|
|
@app.route("/")
|
|
def hello():
|
|
return "<h1 style='color:blue'>Hello There!</h1>"
|
|
|
|
if __name__ == "__main__":
|
|
app.run(host='0.0.0.0')
|