hesabixCore/public_html/index.php
2023-12-29 05:22:11 -08:00

8 lines
250 B
PHP

<?php
use App\Kernel;
require_once dirname(__DIR__).'/hesabixCore/vendor/autoload_runtime.php';
header("Access-Control-Allow-Origin: *");
return function (array $context) {
return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
};