新增定时任务功能;

This commit is contained in:
augushong
2022-02-28 21:31:07 +08:00
parent f4b7371dbd
commit 0f0a1a72af
9 changed files with 177 additions and 6 deletions

View File

@@ -5,6 +5,7 @@
use app\common\command\admin\ResetPassword;
use app\common\command\Install;
use app\common\command\Timer;
return [
// 指令定义
@@ -13,6 +14,7 @@ return [
'node' => 'app\common\command\Node',
'OssStatic' => 'app\common\command\OssStatic',
ResetPassword::class,
Install::class
Install::class,
Timer::class,
],
];