Files
mpay/public/index.php
技术老胡 b8196c6c41 重构更新
2024-10-19 10:06:09 +08:00

16 lines
224 B
PHP

<?php
// [ 应用入口文件 ]
namespace think;
require __DIR__ . '/../vendor/autoload.php';
// 执行HTTP应用并响应
$http = (new App())->http;
$response = $http->run();
$response->send();
$http->end($response);