This commit is contained in:
2026-02-19 14:52:38 +00:00
3 changed files with 4 additions and 1 deletions

7
server/src/data/app.py Normal file
View File

@@ -0,0 +1,7 @@
from flask import Flask, render_template
app = Flask(__name__)
@app.route("/")
def mainpage():
return render_template('index.html', title='BG Shutdown')