From dde98e437b251fb5aa30c7197c68efe9b8ee1083 Mon Sep 17 00:00:00 2001 From: xiongxiao Date: Wed, 21 Jan 2026 22:58:51 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=EF=BC=9A=E6=B3=A8=E9=87=8A?= =?UTF-8?q?=E6=8E=89=E8=B0=83=E8=AF=95=E4=BF=A1=E6=81=AF=E4=BB=A5=E6=B8=85?= =?UTF-8?q?=E7=90=86=E6=8E=A7=E5=88=B6=E5=8F=B0=E8=BE=93=E5=87=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index 9e2dbfb..ea12084 100644 --- a/src/index.ts +++ b/src/index.ts @@ -9,7 +9,7 @@ app.route({ description: 'Token 权限验证,临时方案', }).define(async (ctx) => { // token authentication - console.log('token', ctx.state); + // console.log('token', ctx.state); ctx.state.token = 'abc'; }).addTo(app); const isPm2 = !!process.env.PM2_HOME;