Files
jx-callback/business/jxstore/vendor/jds/jds.go
苏尹岚 a33fa55f8c aa
2021-04-01 16:26:15 +08:00

24 lines
449 B
Go

package jds
import (
"git.rosy.net.cn/jx-callback/business/jxstore/vendor"
"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() {
vendor.HandlerMap[model.VendorIDJDShop] = unionHandler
}
func (s *UnionHandler) ShareUnionLink(ctx *jxcontext.Context, linkType int) (link string, err error) {
return "jds", err
}