Add Todo feature with UI and backend integration

This commit is contained in:
Aman Varshney
2025-03-21 18:46:20 +05:30
parent 1ca76b23f5
commit 39a0374dd0
13 changed files with 472 additions and 60 deletions

View File

@@ -1,9 +1,11 @@
import { router, publicProcedure } from "../lib/trpc";
import { todoRouter } from "./todo";
export const appRouter = router({
healthCheck: publicProcedure.query(() => {
return "OK";
}),
todo: todoRouter,
});
export type AppRouter = typeof appRouter;