Files
jx-callback/business/jxstore/vendor/partner.go
苏尹岚 625b5a5cbd aa
2021-03-24 14:20:16 +08:00

19 lines
315 B
Go

package vendor
import (
"git.rosy.net.cn/jx-callback/business/jxutils/jxcontext"
)
const (
LinkTypeWeiXinMini = 1 //微信小程序
LinkTypeH5 = 2 //H5
)
var (
UnionInterfaceHandler UnionInterface
)
type UnionInterface interface {
ShareUnionLink(ctx *jxcontext.Context, linkType int) (err error)
}