mirror of
https://github.com/documenso/documenso.git
synced 2025-11-10 04:22:32 +10:00
12 lines
329 B
TypeScript
12 lines
329 B
TypeScript
import { authRouter } from './auth-router/router';
|
|
import { profileRouter } from './profile-router/router';
|
|
import { procedure, router } from './trpc';
|
|
|
|
export const appRouter = router({
|
|
hello: procedure.query(() => 'Hello, world!'),
|
|
auth: authRouter,
|
|
profile: profileRouter,
|
|
});
|
|
|
|
export type AppRouter = typeof appRouter;
|