docs: update wg-basic/wecaht

This commit is contained in:
Administrator 2021-08-26 08:23:01 +00:00 committed by John Smith
parent aa6533acb9
commit 81cabf91b6

View File

@ -2,11 +2,28 @@
title: 微信模块 title: 微信模块
description: 微信模块功能 description: 微信模块功能
published: true published: true
date: 2021-08-26T08:21:24.080Z date: 2021-08-26T08:23:00.601Z
tags: wg-basic, wecaht tags: wg-basic, wecaht
editor: markdown editor: markdown
dateCreated: 2021-08-26T08:21:24.080Z dateCreated: 2021-08-26T08:21:24.080Z
--- ---
# 模块加载 # 模块加载
微信模块目前一共有两个,分别是 `login-wechat``module-wechat` 。`login-wechat` 模块不能单独使用,`module-wechat` 模块可以单独使用 微信模块目前一共有两个,分别是 `login-wechat``module-wechat` 。`login-wechat` 模块不能单独使用,`module-wechat` 模块可以单独使用。
两个模块依赖分别为
```xml
<dependency>
<groupId>ink.wgink</groupId>
<artifactId>login-wechat</artifactId>
<version>1.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>ink.wgink</groupId>
<artifactId>module-wechat</artifactId>
<version>1.0-SNAPSHOT</version>
</dependency>
```