0
1
mirror of https://github.com/radio95-rnt/RadioPlayer.git synced 2026-02-26 21:53:54 +01:00
This commit is contained in:
2025-12-06 17:51:01 +01:00
parent 44c29d0120
commit 9a9669be05

View File

@@ -13,7 +13,7 @@ app.logger.disabled = True
@app.route("/")
def home():
global data, data_lock
with data_lock: return repr(data)
with data_lock: return repr(data["playlist"])
def web():
app.run("0.0.0.0", 3001)