后台:上传资源

This commit is contained in:
luying
2021-12-17 19:17:05 +08:00
parent 8c966aaed7
commit 07e12ccf9e
10 changed files with 110 additions and 24 deletions

View File

@@ -208,4 +208,10 @@ export default class GameController extends Controller {
ctx.body = await ctx.service.game.getDicTaskType();
return
}
public async getServerName() {
const { ctx } = this;
ctx.body = await ctx.service.game.getServerName();
return
}
}