mirror of
https://github.com/khairul169/code-share.git
synced 2025-04-28 16:49:36 +07:00
8 lines
227 B
TypeScript
8 lines
227 B
TypeScript
import { createContext } from "./context";
|
|
import { appRouter } from "../../routers/_app";
|
|
import { createCallerFactory } from ".";
|
|
|
|
const trpcServer = createCallerFactory(appRouter)(createContext);
|
|
|
|
export default trpcServer;
|