feat(api): add tRPC routers (auth + content) calling core controllers

This commit is contained in:
2026-04-06 14:48:42 +02:00
parent 1b93fecb7f
commit a870b9e0e5
8 changed files with 119 additions and 3 deletions

6
packages/api/src/trpc.ts Normal file
View File

@@ -0,0 +1,6 @@
import { initTRPC } from "@trpc/server";
const t = initTRPC.create();
export const router = t.router;
export const publicProcedure = t.procedure;