23 lines
476 B
Go
23 lines
476 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{},
|
|
},
|
|
}
|
|
)
|