const z = require("zod") module.exports = { PUT: { query: z.object({ uuid: z.string().uuid(), hash: z.string().length(64) }) }, DELETE: { query: z.object({ uuid: z.string().uuid(), hash: z.string().length(64) }) } }