делаю гайд для операторов

This commit is contained in:
2026-04-23 18:55:19 +03:00
parent 2c7222260d
commit a91e14dabc
3 changed files with 123 additions and 1 deletions

10
app.py
View File

@@ -1651,4 +1651,12 @@ async def publish_vmix_command(payload: PublishVmixCommandPayload, request: Requ
@app.get("/api/vmix/clients")
async def list_vmix_clients():
clients = await vmix_ws_manager.list_clients()
return {"items": clients}
return {"items": clients}
@app.get("/info", response_class=HTMLResponse)
def info_page(request: Request):
return templates.TemplateResponse(
name="info.html",
request=request,
context={}
)