initial commit

This commit is contained in:
2025-09-13 22:02:27 +01:00
commit 58e88edfbd
52 changed files with 4102 additions and 0 deletions

10
convex/users.ts Normal file
View File

@@ -0,0 +1,10 @@
import type { Id } from "./_generated/dataModel"
import { query } from "./_generated/server"
export const getCurrentUser = query({
handler: async (ctx) => {
return await ctx.db.get(
"j574n657f521n19v1stnr88ysd7qhbs1" as Id<"users">,
)
},
})