Files
utility_go/package/pay/vivo/client.go
2025-07-23 17:37:17 +08:00

16 lines
231 B
Go

package vivo
type Pay struct {
AppId string
AppKey string
AppSecret string
}
func New(appId, appKey, appSecret string) (client *Pay) {
return &Pay{
AppId: appId,
AppKey: appKey,
AppSecret: appSecret,
}
}