import { initTRPC } from "@trpc/server"; import { Context } from "./context"; const t = initTRPC.context().create(); // Base router and procedure helpers export const { router, procedure, createCallerFactory } = t;