1a9c92b6db
Includes edge-node (FastAPI/MQTT/Discord voice), op25-container (SDR decoder), and icecast (audio streaming).
13 lines
302 B
Python
13 lines
302 B
Python
from pathlib import Path
|
|
from fastapi import APIRouter
|
|
from fastapi.responses import HTMLResponse
|
|
|
|
router = APIRouter(tags=["ui"])
|
|
|
|
_TEMPLATE = Path(__file__).parent.parent / "templates" / "index.html"
|
|
|
|
|
|
@router.get("/", response_class=HTMLResponse)
|
|
async def index():
|
|
return _TEMPLATE.read_text()
|