24 lines
471 B
Go
24 lines
471 B
Go
package mt
|
|
|
|
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 (
|
|
UnionInterfaceHandler vendor.UnionInterface
|
|
)
|
|
|
|
func init() {
|
|
vendor.HandlerMap[model.VendorIDMTWM] = UnionInterfaceHandler
|
|
}
|
|
|
|
func (s *UnionHandler) ShareUnionLink(ctx *jxcontext.Context, linkType int) (link string, err error) {
|
|
|
|
return link, err
|
|
}
|