7 lines
142 B
TypeScript
7 lines
142 B
TypeScript
import { initTRPC } from '@trpc/server';
|
|
import SuperJSON from 'superjson';
|
|
|
|
export const t = initTRPC.create({
|
|
transformer: SuperJSON,
|
|
});
|