Skip to content

Commit

Permalink
fix: add asset router to app router
Browse files Browse the repository at this point in the history
  • Loading branch information
dcshzj committed Aug 6, 2024
1 parent a04ff3a commit c9016dd
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions apps/studio/src/server/modules/_app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
* This file contains the root router of your tRPC-backend
*/
import { publicProcedure, router } from "../trpc"
import { assetRouter } from "./asset/asset.router"
import { authRouter } from "./auth/auth.router"
import { folderRouter } from "./folder/folder.router"
import { meRouter } from "./me/me.router"
Expand All @@ -12,6 +13,7 @@ export const appRouter = router({
healthcheck: publicProcedure.query(() => "yay!"),
me: meRouter,
auth: authRouter,
asset: assetRouter,
page: pageRouter,
folder: folderRouter,
site: siteRouter,
Expand Down

0 comments on commit c9016dd

Please sign in to comment.