minor changes to overview callbacks

This commit is contained in:
2025-06-04 17:05:59 +00:00
parent 6ab9ceed4b
commit 138c5b1e8c
2 changed files with 4 additions and 20 deletions

View File

@@ -1,16 +0,0 @@
# server/wsgi.py
from flask import Flask, jsonify
app = Flask(__name__)
@app.route("/health")
def health():
return jsonify(status="ok")
# Optional: Test-Route
@app.route("/")
def index():
return "Hello from InfoscreenAPI!"
# (Weitere Endpunkte, Blueprints, Datenbank-Initialisierung usw. kommen hierher)