catchAdmin/catch/wechat/CatchWechatService.php
2020-06-20 08:49:16 +08:00

20 lines
376 B
PHP

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