This commit is contained in:
lizandrogd
2026-01-21 11:17:36 -05:00
parent 5727721f02
commit fccaa3b649
6 changed files with 119 additions and 1 deletions
+11
View File
@@ -0,0 +1,11 @@
<?php
// Ejecutar api/get_conversations.php y mostrar salida
chdir(__DIR__ . '/../api');
ob_start();
try {
include 'get_conversations.php';
} catch (Throwable $t) {
echo 'Error: ' . $t->getMessage();
}
$out = ob_get_clean();
echo $out;