Playliste - online

This commit is contained in:
2026-04-14 20:02:15 +02:00
parent 4ad8241c0e
commit cd3ed811f6
5 changed files with 564 additions and 6 deletions

View File

@@ -8,7 +8,7 @@ from app.models import (
PlaylistShare, CommunityDance, CommunityDanceAlt, DanceAltRating,
SongDance, SongAltDance,
)
from app.routers import auth, projects, songs, alternatives, dances, sync, sharing
from app.routers import auth, projects, songs, alternatives, dances, sync, sharing, live
from app.websocket.manager import router as ws_router
# Opret tabeller hvis de ikke findes
@@ -35,6 +35,7 @@ app.include_router(alternatives.router)
app.include_router(dances.router)
app.include_router(sync.router)
app.include_router(sharing.router)
app.include_router(live.router)
@app.on_event("startup")