10 lines
184 B
TypeScript
Raw Normal View History

2024-02-20 06:52:39 +00:00
import { router } from "../trpc";
import file from "./file";
2024-02-18 21:14:41 +07:00
export const appRouter = router({
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;