feat(nvim-tree): fully working navigation

This commit is contained in:
Pihkaal
2024-01-27 15:39:26 +01:00
parent e9fe8c95d2
commit 73297d046a
6 changed files with 217 additions and 41 deletions

View File

@@ -1,5 +1,8 @@
import { createTRPCRouter } from "~/server/api/trpc";
import { github } from "./routers/github";
export const appRouter = createTRPCRouter({});
export const appRouter = createTRPCRouter({
github,
});
export type AppRouter = typeof appRouter;