mirror of
https://github.com/ajnart/homarr.git
synced 2025-11-11 07:55:52 +01:00
12 lines
307 B
TypeScript
12 lines
307 B
TypeScript
|
|
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;
|