import type { inferAsyncReturnType } from "@trpc/server"; /** * Creates context for an incoming request * @link https://trpc.io/docs/context */ export const createContext = () => ({}); export type Context = inferAsyncReturnType;