diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 3bd2b36..7a6b1e4 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -7,10 +7,10 @@ jobs: runs-on: ubuntu-latest steps: - - name: Set up Go 1.12 + - name: Set up Go 1.13 uses: actions/setup-go@v1 with: - go-version: 1.12 + go-version: 1.13 id: go - name: Check out code into the Go module directory diff --git a/Readme.md b/Readme.md index a7131d3..894201f 100644 --- a/Readme.md +++ b/Readme.md @@ -5,7 +5,7 @@ - `v3` 版本为测试版本 请斟酌使用 - [v1 版本入口](https://github.com/medivhzhan/weapp/tree/v1) - [v2 版本入口](https://github.com/medivhzhan/weapp/tree/v2) -- 新版本不包含支付相关内容, 已有很多优秀的支付相关模块; +- SDK 暂不包含支付相关内容 已有很多优秀的支付相关模块 ## 获取代码 @@ -152,7 +152,7 @@ func main() { --- -## `目录` +## `接口目录` > 文档按照[小程序服务端官方文档](https://developers.weixin.qq.com/miniprogram/dev/api-backend/)排版,方便一一对照查找相关内容。 @@ -299,6 +299,8 @@ func main() { ## 微信通知 +[官方文档](https://developers.weixin.qq.com/miniprogram/dev/framework/server-ability/message-push.html#option-url) + ```go package main diff --git a/go.mod b/go.mod index 8583a03..ef89195 100644 --- a/go.mod +++ b/go.mod @@ -1,5 +1,5 @@ module github.com/medivhzhan/weapp/v3 -go 1.12 +go 1.13 require github.com/mitchellh/mapstructure v1.4.1