38 lines
823 B
Go
38 lines
823 B
Go
package caravan
|
|
|
|
import (
|
|
"go_dreamfactory/lego/core"
|
|
"go_dreamfactory/modules"
|
|
)
|
|
|
|
const (
|
|
TrollGetListResp = "getlist"
|
|
TrollBuyOrSellResp = "buyorsell"
|
|
TrollNpcRewardResp = "npcreward"
|
|
TrollRankListResp = "ranklist"
|
|
TrollRecordListResp = "recordlist"
|
|
TrollAfkSetResp = "afkset"
|
|
TrollSurpriseIdResp = "surpriseid"
|
|
)
|
|
|
|
type apiComp struct {
|
|
modules.MCompGate
|
|
service core.IService
|
|
configure *configureComp
|
|
module *Caravan
|
|
}
|
|
|
|
//组件初始化接口
|
|
func (this *apiComp) Init(service core.IService, module core.IModule, comp core.IModuleComp, options core.IModuleOptions) (err error) {
|
|
err = this.MCompGate.Init(service, module, comp, options)
|
|
this.module = module.(*Caravan)
|
|
this.service = service
|
|
return
|
|
}
|
|
|
|
func (this *apiComp) Start() (err error) {
|
|
err = this.MCompGate.Start()
|
|
|
|
return
|
|
}
|