Project init

This commit is contained in:
Xevion
2022-12-17 15:57:05 -06:00
parent 35b2011040
commit ea0785cc97
24 changed files with 2710 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
import { router } from "../trpc";
import { exampleRouter } from "./example";
export const appRouter = router({
example: exampleRouter,
});
// export type definition of API
export type AppRouter = typeof appRouter;