mirror of
https://gitee.com/ulthon/ulthon_admin.git
synced 2026-07-08 11:02:48 +08:00
feat: 发布智能体版
This commit is contained in:
18
app/common/console/Command.php
Normal file
18
app/common/console/Command.php
Normal file
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
namespace app\common\console;
|
||||
|
||||
use base\common\command\CommandBase;
|
||||
|
||||
/**
|
||||
* Command 命令基类(app 层入口)
|
||||
*
|
||||
* 这是所有命令类使用的 CommandBase 的唯一调用入口。
|
||||
* 对应 ThinkPHP 的 console 目录结构(Input、Output 都在 console 下)
|
||||
*
|
||||
* 所有 extend/base 层的命令应该使用:use app\common\console\Command;
|
||||
*/
|
||||
class Command extends CommandBase
|
||||
{
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user