"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.createContext = void 0; /** * Creates context for an incoming request * @link https://trpc.io/docs/context */ const createContext = async (opts) => { return {}; }; exports.createContext = createContext;