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