feat: Implement playlist management routes and integrate with music player service

This commit is contained in:
JSC
2025-07-12 15:17:45 +02:00
parent 93897921fb
commit 842e1dff13
5 changed files with 413 additions and 55 deletions

View File

@@ -100,6 +100,7 @@ def create_app():
auth,
main,
player,
playlist,
soundboard,
sounds,
stream,
@@ -113,6 +114,7 @@ def create_app():
app.register_blueprint(sounds.bp, url_prefix="/api/sounds")
app.register_blueprint(stream.bp, url_prefix="/api/stream")
app.register_blueprint(player.bp, url_prefix="/api/player")
app.register_blueprint(playlist.bp, url_prefix="/api/playlists")
# Shutdown services when app is torn down
@app.teardown_appcontext