wechat.go 234 B

1234567
  1. package options
  2. type WechatOption struct {
  3. AppId string `json:"appId" mapstructure:"appId"`
  4. AppSecret string `json:"appSecret" mapstructure:"appSecret"`
  5. RedirectUri string `json:"redirectUri" mapstructure:"redirectUri"`
  6. }