mirror of
https://github.com/onyx-and-iris/vmr-http.git
synced 2026-04-16 14:43:31 +00:00
update routes now support PATCH and PUT operations
remove the individual parameter PUT endpoints minor bump
This commit is contained in:
@@ -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)}')
|
||||
|
||||
Reference in New Issue
Block a user