支付配置
This commit is contained in:
parent
e8576d67d9
commit
74d1472a43
|
@ -1,7 +1,6 @@
|
||||||
package paymentService
|
package paymentService
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"PaymentCenter/bootstrap"
|
|
||||||
"PaymentCenter/config"
|
"PaymentCenter/config"
|
||||||
"context"
|
"context"
|
||||||
"crypto/md5"
|
"crypto/md5"
|
||||||
|
@ -28,12 +27,7 @@ func TestMarketSendRequest_Market(t *testing.T) {
|
||||||
|
|
||||||
//加载配置
|
//加载配置
|
||||||
opts.ConfFile = "../../../.env"
|
opts.ConfFile = "../../../.env"
|
||||||
conf, err := config.Load(opts.ConfFile)
|
_, err := config.Load(opts.ConfFile)
|
||||||
if err != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
//引导程序
|
|
||||||
err = bootstrap.Bootstrap(conf)
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
|
@ -93,7 +93,7 @@ type CronConfig struct {
|
||||||
}
|
}
|
||||||
|
|
||||||
type PayService struct {
|
type PayService struct {
|
||||||
Host string `toml:"TestHost"`
|
Host string `toml:"Host"`
|
||||||
IsProd bool `toml:"IsProd"`
|
IsProd bool `toml:"IsProd"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue