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.
|
package config
|
|
|
|
type TlPay struct {
|
|
BaseUrl string `yaml:"base-url"`
|
|
CusID string `yaml:"cus-id"`
|
|
AppId string `yaml:"app-id"`
|
|
PriPemFile string `yaml:"pri-pem-file"`
|
|
PubPemFile string `yaml:"pub-pem-file"`
|
|
TlPubPemFile string `yaml:"tl-pub-pem-file"`
|
|
}
|