ordering and evidence of ps1 working

This commit is contained in:
2025-11-07 14:30:29 +01:00
parent 721c595e4b
commit e576f6f4fb
6 changed files with 1 additions and 1 deletions

View File

@@ -0,0 +1,12 @@
from flask import Flask
# from flask import render_template
app = Flask(__name__)
@app.route("/")
def init():
return "<h1>Hello, World!</h1>"
app.run(host="127.0.0.1", port=5000)