42 lines
1008 B
Go
42 lines
1008 B
Go
package library
|
|
|
|
import (
|
|
"go_dreamfactory/lego/core"
|
|
"go_dreamfactory/modules"
|
|
)
|
|
|
|
const (
|
|
LibraryGetListResp = "getlist"
|
|
LibraryUseGiftResp = "usegift"
|
|
LibraryGetFetterListResp = "getfetterlist"
|
|
LibraryChallengeResp = "challenge"
|
|
LibrarySkillLvResp = "skilllv"
|
|
LibraryGetRewardResp = "getreward"
|
|
LibraryBuyResp = "buy"
|
|
LibraryRankListResp = "ranklist"
|
|
LibraryActivationFetterResp = "activationfetter"
|
|
LibraryChangePush = "change"
|
|
)
|
|
|
|
type apiComp struct {
|
|
modules.MCompGate
|
|
service core.IService
|
|
configure *configureComp
|
|
module *Library
|
|
}
|
|
|
|
//组件初始化接口
|
|
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.(*Library)
|
|
|
|
this.service = service
|
|
return
|
|
}
|
|
|
|
func (this *apiComp) Start() (err error) {
|
|
err = this.MCompGate.Start()
|
|
|
|
return
|
|
}
|