This commit is contained in:
luying
2022-04-02 17:43:12 +08:00
parent f50c32079c
commit 89744aeb13
11 changed files with 193 additions and 7 deletions

View File

@@ -54,4 +54,11 @@ export default class SdkController extends Controller {
ctx.body = await ctx.service.sdk.getServerList(params);
return;
}
public async wjxCallback() {
const { ctx } = this;
ctx.body = await ctx.service.wjx.wjxCallback(ctx.request.body);
return;
}
}