Files
Homarr/src/server/api/root.ts

12 lines
307 B
TypeScript
Raw Normal View History

2023-06-10 10:05:16 +02:00
import { createTRPCRouter } from '~/server/api/trpc';
/**
* This is the primary router for your server.
*
* All routers added in /api/routers should be manually added here.
*/
export const rootRouter = createTRPCRouter({});
// export type definition of API
export type RootRouter = typeof rootRouter;