package worldtask import ( "go_dreamfactory/comm" "go_dreamfactory/lego/base" "go_dreamfactory/lego/core" "go_dreamfactory/modules" ) type Worldtask struct { modules.ModuleBase api *apiComp service base.IRPCXService configure *configureComp } func NewModule() core.IModule { return &Worldtask{} } func (this *Worldtask) Init(service core.IService, module core.IModule, options core.IModuleOptions) (err error) { err = this.ModuleBase.Init(service, module, options) return } func (this *Worldtask) GetType() core.M_Modules { return comm.ModuleWorldtask }