mirror of
https://gitee.com/niucloud-team/niucloud-admin.git
synced 2025-12-14 03:32:48 +00:00
16 lines
557 B
PHP
16 lines
557 B
PHP
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | 控制台配置
|
|
// +----------------------------------------------------------------------
|
|
return [
|
|
// 指令定义
|
|
'commands' => [
|
|
//消息队列 自定义命令
|
|
'queue:work' => 'think\queue\command\Work',
|
|
'queue:restart' => 'think\queue\command\Restart',
|
|
'queue:listen' => 'think\queue\command\Listen',
|
|
'addon:install' => 'app\command\Addon\Install',
|
|
'addon:uninstall' => 'app\command\Addon\Uninstall',
|
|
],
|
|
];
|