From 8b16bc2218d4a1da0e2160e1f8408544f1746b88 Mon Sep 17 00:00:00 2001 From: abearxiong Date: Mon, 29 Dec 2025 14:44:44 +0800 Subject: [PATCH] update --- src/route.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/route.ts b/src/route.ts index db402c1..880f16a 100644 --- a/src/route.ts +++ b/src/route.ts @@ -562,7 +562,7 @@ export class QueryRouter { description: '列出当前应用下的所有的路由信息', run: async (ctx: RouteContext) => { const list = this.getList(filter); - ctx.body = list; + ctx.body = { list }; }, }); this.add(listRoute);