catchAdmin/catch/wechat/CatchWechatService.php
2020-06-21 14:41:46 +08:00

23 lines
386 B
PHP

<?php
namespace catchAdmin\wechat;
use catchAdmin\wechat\command\SyncUsersCommand;
use think\Service;
class CatchWechatService extends Service
{
public function boot()
{}
public function register()
{
$this->registerCommand();
}
public function registerCommand()
{
$this->commands([
SyncUsersCommand::class,
]);
}
}