update patyhs
This commit is contained in:
parent
c70202e5d1
commit
0458ad4948
7 changed files with 9 additions and 13 deletions
9
lib/models/User.ts
Normal file
9
lib/models/User.ts
Normal file
|
@ -0,0 +1,9 @@
|
|||
import { z } from "https://deno.land/x/zod@v3.23.8/mod.ts";
|
||||
|
||||
export const UserModel = z.object({
|
||||
id: z.string().uuid().describe("primary"),
|
||||
name: z.string(),
|
||||
email: z.string(),
|
||||
password: z.string(),
|
||||
pfp_url: z.string(),
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue