const z = require("zod") module.exports = { GET: { params: z.object({ username: z.string().min(1) }), error: { code: 404, message: "Not Found" } } }