5d60d33db1
Volledige Foodlinkk Command Center uitbreiding met social automatisering, reclamefolder filters, Proxmox monitoring en documentatie.
10 lines
247 B
Python
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)
|