后台:添加跳转地址功能

This commit is contained in:
luying
2021-05-15 11:35:30 +08:00
parent 92f2fcf51a
commit a2d2d83f93
6 changed files with 77 additions and 9 deletions
+10
View File
@@ -0,0 +1,10 @@
import { Controller } from 'egg';
export default class GameController extends Controller {
public async getServerEnv() {
const { ctx } = this;
ctx.body = await ctx.service.game.getServerEnv();
return
}
}