Preparando proyecto para migración a repositorio MVE

This commit is contained in:
2025-10-23 08:48:00 -06:00
parent b1b9e4a77c
commit d0af739ce2
75 changed files with 15875 additions and 4022 deletions

10
public/test_json.php Normal file
View File

@@ -0,0 +1,10 @@
<?php
// Test simple para verificar respuesta JSON
header('Content-Type: application/json; charset=utf-8');
echo json_encode([
'success' => true,
'message' => 'Test exitoso',
'timestamp' => date('Y-m-d H:i:s')
]);
?>