mirror of
https://gitee.com/ulthon/ulthon_admin.git
synced 2026-07-01 23:42:48 +08:00
19 lines
519 B
PHP
19 lines
519 B
PHP
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | 控制台配置
|
|
// +----------------------------------------------------------------------
|
|
|
|
use app\common\command\admin\ResetPassword;
|
|
use app\common\command\Timer;
|
|
|
|
return [
|
|
// 指令定义
|
|
'commands' => [
|
|
'curd' => 'app\common\command\Curd',
|
|
'node' => 'app\common\command\Node',
|
|
'OssStatic' => 'app\common\command\OssStatic',
|
|
ResetPassword::class,
|
|
Timer::class,
|
|
],
|
|
];
|