13 lines
321 B
Go
13 lines
321 B
Go
|
package config
|
||
|
|
||
|
// 腾讯相关配置
|
||
|
type tencentConfig struct {
|
||
|
MiniApp wechatMiniAppConfig `mapstructure:"mini-app" yaml:"mini-app"`
|
||
|
}
|
||
|
|
||
|
// 微信小程序配置
|
||
|
type wechatMiniAppConfig struct {
|
||
|
AppId string `mapstructure:"app-id" yaml:"app-id"`
|
||
|
AppSecret string `mapstructure:"app-secret" yaml:"app-secret"`
|
||
|
}
|