mirror of
https://github.com/onyx-and-iris/vmr-http.git
synced 2026-04-06 09:59:11 +00:00
9 lines
257 B
Python
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
|