|
package config
|
|
|
|
// WechatConfig 微信配置结构 (简化版)
|
|
type WechatConfig struct {
|
|
// 微信小程序配置
|
|
MiniAppID string `mapstructure:"mini-app-id" json:"miniAppId" yaml:"mini-app-id"`
|
|
MiniAppSecret string `mapstructure:"mini-app-secret" json:"miniAppSecret" yaml:"mini-app-secret"`
|
|
}
|