Files
html/api/nonreg-quick.php
WEVIA 5279a7981d
Some checks failed
WEVAL NonReg / nonreg (push) Has been cancelled
fix-deerflow-restart-policy-nonreg-endpoint-all-15pages-ok
2026-04-13 11:18:46 +02:00

8 lines
269 B
PHP

<?php
header("Content-Type: text/plain");
$d = @json_decode(@file_get_contents("/var/www/html/api/nonreg-latest.json"), true);
$pass = $d["pass"] ?? 0;
$total = $d["total"] ?? 0;
$pct = $total > 0 ? round(100 * $pass / $total) : 0;
echo "NONREG: $pass/$total ($pct%)";