update routes now support PATCH and PUT operations

remove the individual parameter PUT endpoints

minor bump
This commit is contained in:
2026-04-05 01:19:22 +01:00
parent cd80c7b763
commit 2ebf926b22
9 changed files with 56 additions and 242 deletions

View File

@@ -35,7 +35,7 @@ app.include_router(bus.router, prefix='/bus')
def health_check(voicemeeter=Depends(get_voicemeeter_client)):
"""Health check endpoint to verify the service is running."""
try:
version = voicemeeter.version # Check if we can communicate with Voicemeeter
version = voicemeeter.version
type_ = voicemeeter.type
except CAPIError as e:
raise HTTPException(status_code=503, detail=f'Voicemeeter API error: {str(e)}')