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