37 lines
773 B
Go
37 lines
773 B
Go
package gourmet
|
|
|
|
import (
|
|
"go_dreamfactory/lego/core"
|
|
"go_dreamfactory/modules"
|
|
)
|
|
|
|
const (
|
|
GourmetGetListResp = "getlist"
|
|
GourmetCreateOrderResp = "createorder"
|
|
GourmetSkillLvResp = "skilllv"
|
|
GourmetGetRewardResp = "getreward"
|
|
GourmetGetRandUserResp = "getranduser"
|
|
)
|
|
|
|
type apiComp struct {
|
|
modules.MCompGate
|
|
service core.IService
|
|
configure *configureComp
|
|
module *Gourmet
|
|
}
|
|
|
|
//组件初始化接口
|
|
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.(*Gourmet)
|
|
|
|
this.service = service
|
|
return
|
|
}
|
|
|
|
func (this *apiComp) Start() (err error) {
|
|
err = this.MCompGate.Start()
|
|
|
|
return
|
|
}
|