15 lines
241 B
JavaScript
15 lines
241 B
JavaScript
const z = require("zod")
|
|
|
|
const headerSchema = z.object({
|
|
authorization: z.string()
|
|
.min(6)
|
|
}).passthrough()
|
|
|
|
module.exports = {
|
|
PUT: {
|
|
headers: headerSchema,
|
|
},
|
|
DELETE: {
|
|
headers: headerSchema
|
|
}
|
|
} |