新增微信服务
This commit is contained in:
20
catch/wechat/CatchWechatService.php
Normal file
20
catch/wechat/CatchWechatService.php
Normal file
@@ -0,0 +1,20 @@
|
||||
<?php
|
||||
namespace catchAdmin\wechat;
|
||||
|
||||
use catchAdmin\wechat\command\SyncUsersCommand;
|
||||
use think\Service;
|
||||
|
||||
class CatchWechatService extends Service
|
||||
{
|
||||
public function boot()
|
||||
{
|
||||
parent::boot(); // TODO: Change the autogenerated stub
|
||||
}
|
||||
|
||||
public function registerCommand()
|
||||
{
|
||||
$this->commands([
|
||||
SyncUsersCommand::class,
|
||||
]);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user