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.
34 lines
568 B
34 lines
568 B
// @Time : 2020/7/9 14:23
|
|
// @Author : 黑白配
|
|
// @File : index.go
|
|
// @PackageName:global
|
|
// @Description:
|
|
|
|
package global
|
|
|
|
import (
|
|
"git.ouxuan.net/3136352472/wxpay/src/config"
|
|
"git.ouxuan.net/3136352472/wxpay/src/entity"
|
|
)
|
|
|
|
var V3 = config.V3{
|
|
MchID: "",
|
|
ClientKeyPath: "",
|
|
SerialNo: "",
|
|
}
|
|
|
|
var V2 = entity.PayConfig{
|
|
AppID: "",
|
|
MchID: "",
|
|
SubAppID: "",
|
|
SubMchID: "",
|
|
PayNotify: "",
|
|
RefundNotify: "",
|
|
Secret: "",
|
|
APIClientPath: entity.APIClientPath{
|
|
Cert: "",
|
|
Key: "",
|
|
Root: "",
|
|
},
|
|
SerialNo: "",
|
|
}
|