You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
386 B

// @Time : 2020/7/8 16:04
// @Author : 黑白配
// @File : index.go
// @PackageName:V3
// @Description:V3版本接口
package V3
import (
"git.ouxuan.net/3136352472/wxpay/src/V3/smartGuide"
"git.ouxuan.net/3136352472/wxpay/src/config"
)
type API struct {
SmartGuide *smartGuide.SmartGuide
}
func Init(params *config.V3) *API {
return &API{SmartGuide: smartGuide.New(params)}
}