Spaces:
Runtime error
Runtime error
File size: 243 Bytes
cd6f98e |
1 2 3 4 5 6 7 8 9 10 |
import { agentRouter } from "./routers/agentRouter";
import { createTRPCRouter } from "./trpc";
export const appRouter = createTRPCRouter({
agent: agentRouter,
});
// export type definition of API
export type AppRouter = typeof appRouter;
|