mirror of
https://github.com/flucont/btcloud.git
synced 2025-01-23 05:08:14 -05:00
14 lines
424 B
PHP
14 lines
424 B
PHP
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | 控制台配置
|
|
// +----------------------------------------------------------------------
|
|
return [
|
|
// 指令定义
|
|
'commands' => [
|
|
'updateall' => 'app\command\UpdateAll',
|
|
'decrypt' => 'app\command\DecryptFile',
|
|
'clean' => 'app\command\Clean',
|
|
'cleanvitejs' => 'app\command\CleanViteJs',
|
|
],
|
|
];
|