This commit is contained in:
2026-04-21 13:32:09 +02:00
commit 380aee5d94
6 changed files with 1993 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
from flask import Flask
app = Flask(__name__)
@app.route("/")
def index() -> str:
return "Flask app is running"
if __name__ == "__main__":
app.run(debug=True)