7 lines
280 B
PHP
7 lines
280 B
PHP
<?php
|
|
header("Content-Type: application/json");
|
|
header("Access-Control-Allow-Origin: *");
|
|
$f = "/opt/weval-l99/orphans-mapped-by-suite.json";
|
|
if (!file_exists($f)) { http_response_code(404); echo json_encode(["error"=>"mapper not generated"]); exit; }
|
|
echo file_get_contents($f);
|