Switch from relative imports to absolute imports

This commit is contained in:
Xevion
2022-12-18 00:05:47 -06:00
parent a2dd414026
commit 5f252cd814
9 changed files with 18 additions and 14 deletions

View File

@@ -1,5 +1,5 @@
import { router } from "../trpc";
import { exampleRouter } from "./example";
import { router } from "@/server/trpc/trpc";
import { exampleRouter } from "@/server/trpc/router/example";
export const appRouter = router({
example: exampleRouter,