This commit is contained in:
2026-01-24 17:01:39 +08:00
parent d23fc2b2d8
commit ce6bc3e48e
5 changed files with 18 additions and 4 deletions

8
convex/xiong.ts Normal file
View File

@@ -0,0 +1,8 @@
import { query, mutation, action } from "./_generated/server";
export const get = query({
args: {},
handler: async (ctx) => {
return await ctx.db.query("xiong").collect();
},
});