From 26c50acdf6cc7b07e495ade3fb058c00e4e7c799 Mon Sep 17 00:00:00 2001 From: imbytecat Date: Sun, 18 Jan 2026 03:06:32 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E6=9B=B4=E6=96=B0=E6=95=B0=E6=8D=AE?= =?UTF-8?q?=E5=BA=93=E4=B8=AD=E9=97=B4=E4=BB=B6=E5=AF=BC=E5=85=A5=E8=B7=AF?= =?UTF-8?q?=E5=BE=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 更新数据库中间件导入路径以正确引用模块。 --- src/orpc/handlers/todo.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/orpc/handlers/todo.ts b/src/orpc/handlers/todo.ts index fc12752..8415bb8 100644 --- a/src/orpc/handlers/todo.ts +++ b/src/orpc/handlers/todo.ts @@ -7,7 +7,7 @@ import { } from 'drizzle-zod' import { z } from 'zod' import { todoTable } from '@/db/schema' -import { dbProvider } from '../middlewares' +import { dbProvider } from '@/orpc/middlewares' const selectSchema = createSelectSchema(todoTable)