vmr-http/src/vmr_http/dependencies.py
onyx-and-iris 0eca324e38 add docstrings
add documentation tags

add some error handling
2026-04-05 00:22:50 +01:00

9 lines
257 B
Python

"""module containing dependencies for the API endpoints."""
from fastapi import Request
def get_voicemeeter_client(request: Request):
"""Dependency to get the Voicemeeter client from the application state."""
return request.app.state.voicemeeter