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.
12 lines
351 B
12 lines
351 B
8 months ago
|
package config
|
||
|
|
||
|
type Alipay struct {
|
||
|
AppId string `ini:"appId"`
|
||
|
PrivateKey string `ini:"privateKey"`
|
||
|
AliPublicKey string `ini:"aliPublicKey"`
|
||
|
IsProduction bool `ini:"isProduction"`
|
||
|
TimeExpire uint `ini:"timeExpire"`
|
||
|
NotifyURL string `ini:"notifyURL"`
|
||
|
CertifyReturnURL string `ini:"certifyReturnURL"`
|
||
|
}
|