31 lines
604 B
Go
31 lines
604 B
Go
package horoscope
|
|
|
|
import (
|
|
"go_dreamfactory/modules"
|
|
|
|
"go_dreamfactory/lego/base"
|
|
"go_dreamfactory/lego/core"
|
|
)
|
|
|
|
/*
|
|
API
|
|
*/
|
|
type apiComp struct {
|
|
modules.MCompGate
|
|
service base.IRPCXService
|
|
module *Horoscope
|
|
}
|
|
|
|
//组件初始化接口
|
|
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.(*Horoscope)
|
|
this.service = service.(base.IRPCXService)
|
|
return
|
|
}
|
|
|
|
func (this *apiComp) Start() (err error) {
|
|
err = this.MCompGate.Start()
|
|
return
|
|
}
|