Carpeta ajax

This commit is contained in:
Axel Axt
2026-08-04 19:44:00 -03:00
parent 64a0703d97
commit cf5d30a756
+20
View File
@@ -0,0 +1,20 @@
<?php
session_start();
/* ENV */
$env = parse_ini_file(__DIR__ . '/../../.env');
foreach ($env as $key => $value) {
$_ENV[$key] = $value;
}
/* CONTROLLER */
require_once '../../app/controllers/chatBotController.php';
$controller = new chatBotController();
$controller->responder();