dia-gov's picture
Upload 569 files
cd6f98e verified
raw
history blame
243 Bytes
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;