mirror of
https://github.com/Xevion/100prisoners.git
synced 2025-12-06 03:14:19 -06:00
10 lines
248 B
TypeScript
10 lines
248 B
TypeScript
import { router } from "@/server/trpc/trpc";
|
|
import { exampleRouter } from "@/server/trpc/router/example";
|
|
|
|
export const appRouter = router({
|
|
example: exampleRouter,
|
|
});
|
|
|
|
// export type definition of API
|
|
export type AppRouter = typeof appRouter;
|