Base de donnée opé

This commit is contained in:
ETHEVE Fabien
2023-02-06 13:54:51 +01:00
parent 0c934709ce
commit c3d6e4423d
10 changed files with 700 additions and 5 deletions
+11
View File
@@ -0,0 +1,11 @@
import { optional, string, z } from "zod";
const jeuxValidation = z.object({
Title : z.string(),
Description : z.string(),
Picture: z.string(),
Worker : z.string()
});
export default jeuxValidation;