6 lines
133 B
TypeScript
6 lines
133 B
TypeScript
export async function createTrpcContext() {
|
|
return {};
|
|
}
|
|
|
|
export type TrpcContext = Awaited<ReturnType<typeof createTrpcContext>>;
|