12 lines
244 B
PHP
12 lines
244 B
PHP
<?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;
|