aboutsummaryrefslogtreecommitdiffstats
path: root/packages/web/server/api/routers/_app.ts
blob: a4f9c629d7343851dc8a95e80c77c75e95f727cb (plain) (blame)
1
2
3
4
5
6
7
import { router } from "../trpc";
import { bookmarksAppRouter } from "./bookmarks";
export const appRouter = router({
  bookmarks: bookmarksAppRouter,
});
// export type definition of API
export type AppRouter = typeof appRouter;