mirror of
https://gitee.com/ulthon/ulthon_admin.git
synced 2026-07-05 17:42:49 +08:00
17 lines
268 B
PHP
17 lines
268 B
PHP
#!/usr/bin/env php
|
|
<?php
|
|
namespace think;
|
|
|
|
// 命令行入口文件
|
|
// 加载基础文件
|
|
require __DIR__ . '/vendor/autoload.php';
|
|
|
|
require __DIR__ . '/{$lib_php_file}';
|
|
|
|
define('REUQEST_UID', uniqid());
|
|
|
|
// 应用初始化
|
|
$app = (new App());
|
|
|
|
|
|
$app->console->run(); |