Files
foodlinkk-command-center/cockpit/app/routes/monitor.py
T
Aissa 5d60d33db1 Platform bundle: marketing publish, IT ops, packaging, agents mesh.
Volledige Foodlinkk Command Center uitbreiding met social automatisering,
reclamefolder filters, Proxmox monitoring en documentatie.
2026-06-09 00:41:27 +00:00

10 lines
247 B
Python

from fastapi import APIRouter
from fastapi.responses import RedirectResponse
router = APIRouter(prefix="/monitor", tags=["monitor"])
@router.get("")
async def monitor_page():
return RedirectResponse(url="/browser#monitor", status_code=302)