12 lines
232 B
TypeScript
Raw Normal View History

2024-02-22 12:14:58 +00:00
import { router } from "../api/trpc";
2024-02-22 20:59:20 +00:00
import project from "./project";
2024-02-20 06:52:39 +00:00
import file from "./file";
2024-02-18 21:14:41 +07:00
export const appRouter = router({
2024-02-22 20:59:20 +00:00
project,
2024-02-20 06:52:39 +00:00
file,
2024-02-18 21:14:41 +07:00
});
// export type definition of API
export type AppRouter = typeof appRouter;