Files
utility_go/package/pay/vivo/client.go
2025-07-24 18:33:54 +08:00

16 lines
212 B
Go

package vivo
type Pay struct {
AppId string
AppKey string
//AppSecret string
}
func New(cfg *Pay) (client *Pay) {
return &Pay{
AppId: cfg.AppId,
AppKey: cfg.AppKey,
//AppSecret: cfg.AppSecret,
}
}