mirror of
https://github.com/rjNemo/meal_planner
synced 2026-06-06 02:26:49 +00:00
9 lines
256 B
TypeScript
9 lines
256 B
TypeScript
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<typeof createContext>;
|