package passon import ( "go_dreamfactory/modules" "go_dreamfactory/lego/core" ) type apiComp struct { modules.MCompGate service core.IService module *Passon } 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.service = service this.module = module.(*Passon) return } func (this *apiComp) Start() (err error) { err = this.MCompGate.Start() return }