Changed page title and added a favicon

This commit is contained in:
2025-08-31 15:45:49 +02:00
parent b7f32c2bce
commit 9c7f6e9a01
3 changed files with 35 additions and 6 deletions

7
app.py
View File

@@ -1,5 +1,5 @@
# import requests as r
from flask import jsonify, Flask, render_template
from flask import jsonify, Flask, render_template, send_file
from poll_services import start_async_loop
from mem import services
import threading
@@ -19,6 +19,11 @@ def status():
return jsonify([s.to_dict() for s in services])
@app.route("/favicon.svg")
def favicon():
return send_file("/static/favicon.svg")
# Only run if directly running file
if __name__ == "__main__":