mirror of
https://github.com/khairul169/code-share.git
synced 2025-04-28 16:49:36 +07:00
12 lines
232 B
TypeScript
12 lines
232 B
TypeScript
import { router } from "../api/trpc";
|
|
import project from "./project";
|
|
import file from "./file";
|
|
|
|
export const appRouter = router({
|
|
project,
|
|
file,
|
|
});
|
|
|
|
// export type definition of API
|
|
export type AppRouter = typeof appRouter;
|