diff --git a/app.py b/app.py index cc1ada9..3624019 100644 --- a/app.py +++ b/app.py @@ -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} \ No newline at end of file + return {"items": clients} + +@app.get("/info", response_class=HTMLResponse) +def info_page(request: Request): + return templates.TemplateResponse( + name="info.html", + request=request, + context={} + ) \ No newline at end of file diff --git a/templates/info.html b/templates/info.html new file mode 100644 index 0000000..cca5be7 --- /dev/null +++ b/templates/info.html @@ -0,0 +1,114 @@ + + +
+ ++ Здесь будет описание логина. +
+ + + ++ Здесь будет описание матчей. +
++ Управление матчем. +
++ Scheduler и обновления. +
++ Интеграция с трансляцией. +
+