1、微信h5 appID appSecret配置改从yaml获取

This commit is contained in:
2025-05-11 11:48:13 +08:00
parent b91ea31727
commit 8c4f98a2d5
4 changed files with 15 additions and 4 deletions

View File

@@ -19,6 +19,7 @@ type Config struct {
WestConfig WestConfig
YushanConfig YushanConfig
SystemConfig SystemConfig
WechatH5 WechatH5Config
}
// JwtAuth 用于 JWT 鉴权配置
@@ -87,3 +88,7 @@ type YushanConfig struct {
type SystemConfig struct {
ThreeVerify bool
}
type WechatH5Config struct {
AppID string
AppSecret string
}