Template
1
0

feat: initial commit

This commit is contained in:
2025-04-18 20:18:50 +00:00
commit 7df57522d2
20 changed files with 2094 additions and 0 deletions

9
tests/mocks/user.ts Normal file
View File

@@ -0,0 +1,9 @@
import z from "zod";
export const UserSchema = z.object({
id: z.string().check(z.uuid()),
name: z.string(),
email: z.string().check(z.email()),
});
export type User = z.infer<typeof UserSchema>;