Files
agentic-dev/packages/core-shared/src/trpc/context.ts

6 lines
133 B
TypeScript

export async function createTrpcContext() {
return {};
}
export type TrpcContext = Awaited<ReturnType<typeof createTrpcContext>>;