import { router } from "../index"; import { helloWorldRouter } from "./helloWorld"; export const appRouter = router({ helloWorld: helloWorldRouter, }); // export type definition of API export type AppRouter = typeof appRouter;