mirror of
https://github.com/khairul169/code-share.git
synced 2025-04-29 00:59:37 +07:00
10 lines
188 B
TypeScript
10 lines
188 B
TypeScript
import { router } from "../api/trpc";
|
|
import file from "./file";
|
|
|
|
export const appRouter = router({
|
|
file,
|
|
});
|
|
|
|
// export type definition of API
|
|
export type AppRouter = typeof appRouter;
|