go_dreamfactory/modules/smithy/api.go
2022-09-06 10:51:25 +08:00

36 lines
784 B
Go

package smithy
import (
"go_dreamfactory/lego/core"
"go_dreamfactory/modules"
)
const (
SmithyGetListResp = "getlist"
SmithyCreateOrderResp = "createorder"
SmithyDeskSkillLvResp = "deskskilllv"
SmithyStoveSkillLvResp = "stoveskilllv"
SmithyGetRewardResp = "getreward"
SmithyGetRandUserResp = "getranduser"
)
type apiComp struct {
modules.MCompGate
service core.IService
module *Smithy
}
//组件初始化接口
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.(*Smithy)
this.service = service
return
}
func (this *apiComp) Start() (err error) {
err = this.MCompGate.Start()
return
}