blob: 2097b47d2c579c962609fed5d053ae3eec16e596 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
import { router } from "../trpc";
import { apiKeysAppRouter } from "./apiKeys";
import { bookmarksAppRouter } from "./bookmarks";
export const appRouter = router({
bookmarks: bookmarksAppRouter,
apiKeys: apiKeysAppRouter,
});
// export type definition of API
export type AppRouter = typeof appRouter;
|