feat(core-api): scaffold empty appRouter aggregator

This commit is contained in:
2026-05-04 20:30:28 +02:00
parent cd1aa861a2
commit f55823fc6e
5 changed files with 42 additions and 0 deletions

View File

@@ -0,0 +1 @@
export { appRouter, type AppRouter } from "./root";

View File

@@ -0,0 +1,5 @@
import { router } from "@repo/core-shared/trpc/init";
export const appRouter = router({});
export type AppRouter = typeof appRouter;