24 lines
374 B
Go
24 lines
374 B
Go
package mt
|
|
|
|
import (
|
|
"git.rosy.net.cn/baseapi/platformapi/mtunionapi"
|
|
"git.rosy.net.cn/jx-callback/business/jxstore/partner"
|
|
"git.rosy.net.cn/jx-callback/business/model"
|
|
)
|
|
|
|
type UnionHandler struct {
|
|
}
|
|
|
|
var (
|
|
unionHandler *UnionHandler
|
|
)
|
|
|
|
func init() {
|
|
partner.HandlerMap[model.VendorIDMTWM] = unionHandler
|
|
}
|
|
|
|
func getAPI() (apiobj *mtunionapi.API) {
|
|
|
|
return apiobj
|
|
}
|