增加vivo支付与登录接口

This commit is contained in:
ayflying
2025-07-23 17:37:17 +08:00
parent 58bea0c09a
commit 90b72129a5
8 changed files with 256 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
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,
}
}