refactoring some files.

This commit is contained in:
killian-larcher
2024-12-16 20:01:30 +01:00
parent 31ee81c10f
commit 4f12a2b078
26 changed files with 160 additions and 70 deletions
@@ -3,6 +3,7 @@ import {z} from "zod";
export const OrganizationSchema = z.object({
name: z.string(),
slug: z.string(),
});
export type OrganizationSchema = z.infer<typeof OrganizationSchema>;