mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
12 lines
290 B
PHP
12 lines
290 B
PHP
<?php
|
|
|
|
use think\Console;
|
|
|
|
Console::starting(function (Console $console) {
|
|
$console->addCommands([
|
|
'app\wechat\command\fans\fansAll',
|
|
'app\wechat\command\fans\fansBlack',
|
|
'app\wechat\command\fans\fansList',
|
|
'app\wechat\command\fans\fansTags',
|
|
]);
|
|
}); |