9 lines
143 B
JavaScript

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