21 lines
408 B
Go
21 lines
408 B
Go
package mt
|
|
|
|
import (
|
|
"git.rosy.net.cn/jx-callback/business/jxstore/vendor"
|
|
"git.rosy.net.cn/jx-callback/business/jxutils/jxcontext"
|
|
)
|
|
|
|
type UnionHandler struct {
|
|
}
|
|
|
|
var (
|
|
UnionInterfaceHandler vendor.UnionInterface
|
|
UnionHandlerObj = &UnionHandler{}
|
|
)
|
|
|
|
func (s *UnionHandler) ShareUnionLink(ctx *jxcontext.Context, linkType int) (err error) {
|
|
UnionInterfaceHandler = UnionHandlerObj
|
|
|
|
return err
|
|
}
|