- @echo off
- chcp 65001 >nul 2>&1
- echo ========================================
- echo Testing API Endpoints
- echo ========================================
- echo.
- echo [1] Testing /api/devices endpoint...
- curl -s http://localhost:8080/api/devices | python -m json.tool
- echo.
- echo [2] Testing /api/topology endpoint...
- curl -s http://localhost:8080/api/topology | python -m json.tool
- echo.
- pause
|