You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
486 B
Go
21 lines
486 B
Go
package config
|
|
|
|
type Payment struct {
|
|
BaseUrl string `yaml:"base-url"`
|
|
ApiKey string `yaml:"api-key"`
|
|
SignKey string `yaml:"sign-key"`
|
|
WxPay WxPay `yaml:"wx-pay"`
|
|
AliPay AliPay `yaml:"ali-pay"`
|
|
}
|
|
|
|
type WxPay struct {
|
|
SubAppId string `yaml:"sub-app-id"`
|
|
SubAppSecret string `yaml:"sub-app-secret"`
|
|
AuthRedirectUri string `yaml:"auth-redirect-uri"`
|
|
}
|
|
|
|
type AliPay struct {
|
|
SubAppId string `yaml:"sub-app-id"`
|
|
SubPriPemFile string `yaml:"sub-pri-pem-file"`
|
|
}
|