aboutsummaryrefslogtreecommitdiffstats
path: root/packages/trpc/routers/lists.ts
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--packages/trpc/routers/lists.ts (renamed from packages/web/server/api/routers/lists.ts)4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/web/server/api/routers/lists.ts b/packages/trpc/routers/lists.ts
index 7bf5eed5..fa97929d 100644
--- a/packages/web/server/api/routers/lists.ts
+++ b/packages/trpc/routers/lists.ts
@@ -1,10 +1,10 @@
-import { Context, authedProcedure, router } from "../trpc";
+import { Context, authedProcedure, router } from "../index";
import { SqliteError } from "@hoarder/db";
import { z } from "zod";
import { TRPCError, experimental_trpcMiddleware } from "@trpc/server";
import { bookmarkLists, bookmarksInLists } from "@hoarder/db/schema";
import { and, eq } from "drizzle-orm";
-import { zBookmarkListSchema } from "@/lib/types/api/lists";
+import { zBookmarkListSchema } from "../types/lists";
const ensureListOwnership = experimental_trpcMiddleware<{
ctx: Context;