Files
ulthon_admin/think

12 lines
214 B
PHP

#!/usr/bin/env php
<?php
namespace think;
// 命令行入口文件
// 加载基础文件
require __DIR__ . '/vendor/autoload.php';
define('REUQEST_UID', uniqid());
// 应用初始化
(new App())->console->run();