import { mergeRouters } from '../trpc'; import { calculateRouter } from './calculate'; import { quoteRouter } from './quote'; import { tarifRouter } from './tarif'; export const appRouter = mergeRouters(quoteRouter, calculateRouter, tarifRouter); export type AppRouter = typeof appRouter;