mirror of
https://gitee.com/ulthon/ulthon_admin.git
synced 2026-07-01 07:22:49 +08:00
15 lines
306 B
PHP
15 lines
306 B
PHP
#!/usr/bin/env php
|
|
<?php
|
|
namespace think;
|
|
|
|
// 命令行入口文件
|
|
// 加载基础文件
|
|
require __DIR__ . '/vendor/autoload.php';
|
|
|
|
// 声明全局变量
|
|
define('DS', DIRECTORY_SEPARATOR);
|
|
define('ROOT_PATH', __DIR__ . DS);
|
|
define('REUQEST_UID', uniqid());
|
|
|
|
// 应用初始化
|
|
(new App())->console->run(); |