nanobot-voice-interface/app_dependencies.py

10 lines
194 B
Python
Raw Permalink Normal View History

from __future__ import annotations
from fastapi import Request
from web_runtime import WebAppRuntime
def get_runtime(request: Request) -> WebAppRuntime:
return request.app.state.runtime