33 lines
704 B
Go
33 lines
704 B
Go
package pb
|
|
|
|
import (
|
|
"go_dreamfactory/cmd/v2/lib/common"
|
|
"go_dreamfactory/cmd/v2/model"
|
|
"go_dreamfactory/comm"
|
|
"go_dreamfactory/pb"
|
|
)
|
|
|
|
var (
|
|
TaskCase = map[string]*model.TestCase{
|
|
common.MF(comm.ModuleAcademy, "receive"): {
|
|
NavLabel: "联盟学院 领取奖励",
|
|
Desc: "新手训练营",
|
|
MainType: string(comm.ModuleAcademy),
|
|
SubType: "receive",
|
|
Enabled: true,
|
|
Req: &pb.AcademyReceiveReq{},
|
|
Rsp: &pb.AcademyReceiveResp{},
|
|
},
|
|
}
|
|
|
|
//worldtask
|
|
WorldtaskCase = map[string]*model.TestCase{
|
|
common.MF(comm.ModuleWorldtask, "accept"): {
|
|
NavLabel: "接取任务",
|
|
MainType: string(comm.ModuleWorldtask),
|
|
SubType: "accept",
|
|
Enabled: true,
|
|
},
|
|
}
|
|
)
|