You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
537 B
14 lines
537 B
package config
|
|
|
|
type Wxpay struct {
|
|
MchID string `ini:"mchID"`
|
|
MchCertificateSerialNumber string `ini:"mchCertificateSerialNumber"`
|
|
MchAPIv3Key string `ini:"mchAPIv3Key"`
|
|
PrivateKey string `ini:"privateKey"`
|
|
PrivateCert string `ini:"privateCert"`
|
|
NotifyURL string `ini:"notifyURL"`
|
|
BrokerAppId string `ini:"brokerAppId"`
|
|
TimeExpire uint `ini:"timeExpire"`
|
|
WxappAppId string `ini:"wxappAppId"`
|
|
}
|