This commit is contained in:
2025-12-29 14:44:44 +08:00
parent b0eb3a9ada
commit 8b16bc2218

View File

@@ -562,7 +562,7 @@ export class QueryRouter {
description: '列出当前应用下的所有的路由信息', description: '列出当前应用下的所有的路由信息',
run: async (ctx: RouteContext) => { run: async (ctx: RouteContext) => {
const list = this.getList(filter); const list = this.getList(filter);
ctx.body = list; ctx.body = { list };
}, },
}); });
this.add(listRoute); this.add(listRoute);