feat(gvg): 组建期

This commit is contained in:
luying
2023-01-05 19:18:56 +08:00
parent 94c69089ac
commit 03fa74f3d1
50 changed files with 10354 additions and 38 deletions

View File

@@ -215,4 +215,16 @@ export default class GameController extends Controller {
ctx.body = await ctx.service.game.getExistHiddenData(type);
return
}
public async getGVGServerGroup() {
const { ctx } = this;
ctx.body = await ctx.service.game.getGVGServerGroup();
return
}
public async getGVGConfig() {
const { ctx } = this;
ctx.body = await ctx.service.game.getGVGConfig();
return
}
}