feat(core-shared): add tRPC context factory

This commit is contained in:
2026-05-04 20:40:52 +02:00
parent cd2f3b1fff
commit 428346a36d

View File

@@ -0,0 +1,5 @@
export async function createTrpcContext() {
return {};
}
export type TrpcContext = Awaited<ReturnType<typeof createTrpcContext>>;