This commit is contained in:
2024-09-14 10:48:09 +08:00
commit a5fa833937
192 changed files with 87641 additions and 0 deletions

14
global/global.go Normal file
View File

@@ -0,0 +1,14 @@
package global
import (
"github.com/smartwalle/alipay/v3"
"github.com/wechatpay-apiv3/wechatpay-go/core"
)
var GlobalData DataStruct
type DataStruct struct {
PayClient *core.Client
PayH5Client *core.Client
AliPayClient *alipay.Client
}