新增微信服务

This commit is contained in:
JaguarJack 2020-06-20 08:49:16 +08:00
parent 1d1afe468c
commit 49a8d04157
4 changed files with 33 additions and 0 deletions

View 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,
]);
}
}

View File

@ -0,0 +1 @@
<?php

11
catch/wechat/module.json Normal file
View File

@ -0,0 +1,11 @@
{
"name": "系统管理",
"alias": "system",
"description": "",
"keywords": [],
"order": 2,
"services": [],
"aliases": {},
"files": [],
"requires": []
}

View File

@ -0,0 +1 @@
<?php