mirror of
https://github.com/silenceper/wechat.git
synced 2026-02-09 15:12:26 +08:00
增加企业微信 企业内部开发模块 (#418)
* 增加小程序内容安全接口 * 内容安全接口 按照golint规范进行优化 * 内容安全接口 按照golint规范进行优化 * 删除CheckImage中的输出代码 * 小程序内容安全接口 * 小程序内容安全接口 * 小程序内容安全接口 1:修改返回值 改为error异常统一返回 * 增加企业微信 企业内部开发模块 1:授权登录 * 增加企业微信 企业内部开发模块 * 修改参数为小写 * 优化参数格式 Co-authored-by: root <admin@example.com>
This commit is contained in:
14
work/config/config.go
Normal file
14
work/config/config.go
Normal file
@@ -0,0 +1,14 @@
|
||||
// Package config 企业微信config配置
|
||||
package config
|
||||
|
||||
import (
|
||||
"github.com/silenceper/wechat/v2/cache"
|
||||
)
|
||||
|
||||
// Config config for 企业微信
|
||||
type Config struct {
|
||||
CorpID string `json:"corp_id"` // corp_id
|
||||
CorpSecret string `json:"corp_secret"` // corp_secret
|
||||
AgentID string `json:"agent_id"` // agent_id
|
||||
Cache cache.Cache
|
||||
}
|
||||
Reference in New Issue
Block a user