36 lines
738 B
Go
36 lines
738 B
Go
package island
|
|
|
|
import (
|
|
"go_dreamfactory/modules"
|
|
|
|
"go_dreamfactory/lego/core"
|
|
)
|
|
|
|
const ( //消息回复的头名称
|
|
GetlistResp = "getlistresp"
|
|
UseItemResp = "useitemresp"
|
|
SellItemResp = "sellitemresp"
|
|
)
|
|
|
|
/*
|
|
背包 处理用户的请求组件 必须继承 modules.MComp_GateComp
|
|
*/
|
|
type apiComp struct {
|
|
modules.MCompGate
|
|
service core.IService
|
|
module *IsLand
|
|
}
|
|
|
|
//组件初始化接口
|
|
func (this *apiComp) Init(service core.IService, module core.IModule, comp core.IModuleComp, options core.IModuleOptions) (err error) {
|
|
this.MCompGate.Init(service, module, comp, options)
|
|
this.module = module.(*IsLand)
|
|
this.service = service
|
|
return
|
|
}
|
|
|
|
func (this *apiComp) Start() (err error) {
|
|
err = this.MCompGate.Start()
|
|
return
|
|
}
|