Files
html/api/ambre-diag-aide.php
opus 730f5ec1d5
Some checks failed
WEVAL NonReg / nonreg (push) Has been cancelled
auto-sync via WEVIA git_sync_all intent 2026-04-21T13:59:55+02:00
2026-04-21 13:59:55 +02:00

12 lines
475 B
PHP

<?php
header("Content-Type: application/json");
@require_once "/var/www/html/api/wevia-fast-path-v3.php";
$r = function_exists("wevia_fast_path") ? wevia_fast_path("aide") : null;
$snapshot = function_exists("__ambre_truth_snapshot") ? __ambre_truth_snapshot() : null;
echo json_encode([
"fn_fast_path" => function_exists("wevia_fast_path"),
"fn_helper" => function_exists("__ambre_truth_snapshot"),
"fp_result" => $r,
"snapshot" => $snapshot,
], JSON_PRETTY_PRINT);