const RequestValidator = (schema) => { return async (req, res, next) => { try { req.body = await schema.parseAsync(req.body); next(); } catch (err) { next(err); } }; }; export default RequestValidator;