feat: 发布智能体版

This commit is contained in:
augushong
2026-03-26 20:22:34 +08:00
parent 7ee9e102a5
commit 8cc08bcb8c
138 changed files with 7964 additions and 660 deletions

View 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
{
}