go_dreamfactory/modules/rtask/api.go
2023-02-02 10:42:49 +08:00

32 lines
732 B
Go

package rtask
import (
"go_dreamfactory/lego/core"
"go_dreamfactory/modules"
)
const (
RtaskSubTypeList = "list" //随机任务列表
RtaskSubTypeGetrecord = "getrecord" //任务数据
RtaskSubTypeSend = "send" //触发任务
)
type apiComp struct {
modules.MCompGate
service core.IService
moduleRtask *ModuleRtask
}
//组件初始化接口
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.moduleRtask = module.(*ModuleRtask)
this.service = service
return
}
func (this *apiComp) Start() (err error) {
err = this.MCompGate.Start()
return
}