This commit is contained in:
苏尹岚
2021-04-07 16:48:23 +08:00
parent bf35e6a26d
commit bac4c55835
7 changed files with 9 additions and 11 deletions

View File

@@ -0,0 +1,23 @@
package jds
import (
"git.rosy.net.cn/jx-callback/business/jxstore/partner"
"git.rosy.net.cn/jx-callback/business/jxutils/jxcontext"
"git.rosy.net.cn/jx-callback/business/model"
)
type UnionHandler struct {
}
var (
unionHandler *UnionHandler
)
func init() {
partner.HandlerMap[model.VendorIDJDShop] = unionHandler
}
func (s *UnionHandler) ShareUnionLink(ctx *jxcontext.Context, linkType int) (link string, err error) {
return "jds", err
}