Rename AI example directories from apps/ to web/

This commit is contained in:
Aman Varshney
2025-04-19 11:05:44 +05:30
parent 492ddf92ac
commit 88afa9a5ff
10 changed files with 17 additions and 12 deletions

View File

@@ -12,7 +12,7 @@ export const appRouter = {
privateData: protectedProcedure.handler(({ context }) => {
return {
message: "This is private",
user: context.session!.user,
user: context.session?.user,
};
}),
{{/if}}
@@ -48,4 +48,4 @@ export const appRouter = router({
{{/if}}
});
{{/if}}
export type AppRouter = typeof appRouter;
export type AppRouter = typeof appRouter;