<?php
/*
 * @Description: this is description
 * @Autor: ERFAN
 * @Email: ykpj1221@163.com
 * @weixin: ycoder--123
 * @Date: 2020-11-26 19:35:51
 * @LastEditors: ERFAN
 * @LastEditTime: 2020-12-15 16:42:05
 */

// [ 应用入口文件 ]
namespace think;
header("Access-Control-Allow-Origin:*");
header("Access-Control-Allow-Methods:GET, POST, OPTIONS, DELETE");
header("Access-Control-Allow-Headers:DNT,X-Mx-ReqToken,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type, Accept-Language, Origin, Accept-Encoding");

require __DIR__ . '/../vendor/autoload.php';
define('__IMG__', 'https://mpkino.kaknus.cn/');
// 执行HTTP应用并响应
$http = (new App())->http;

$response = $http->run();

$response->send();

$http->end($response);
