<?php
// [ 应用入口文件 ]
namespace think;
require __DIR__ . '/../vendor/autoload.php';



header("Access-Control-Allow-Origin:*");
header("Access-Control-Allow-Methods:GET, POST, OPTIONS, DELETE");
header("Access-Control-Allow-Headers:x-requested-with, Referer,content-type,token,DNT,X-Mx-ReqToken,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type, Accept-Language, Origin, Accept-Encoding,Authorization");




// 定义当前版本号
define('CMS_VERSION','5.6');

// 定义手机端当前版本号
define('MB_VERSION','1.0');

// 定义Layui版本号
define('LAYUI_VERSION','2.9.21');

// 定义项目目录
define('CMS_ROOT', __DIR__ . '/../');



// 定义报错模版
define('EEEOR_REPORTING',CMS_ROOT.'/public/tpl/error.html');

// 执行HTTP应用并响应
$http = (new App())->http;

$response = $http->run();

$response->send();

$http->end($response);
