Moving files and rename some of them.

This commit is contained in:
charles-gauthereau
2024-12-16 16:30:00 +01:00
parent c97d68d697
commit 31ee81c10f
75 changed files with 64 additions and 175 deletions
@@ -0,0 +1,8 @@
import {z} from "zod";
export const OrganizationSchema = z.object({
name: z.string(),
});
export type OrganizationSchema = z.infer<typeof OrganizationSchema>;