const Joi = require('joi'); const pushInputType = Joi.object().keys({ token: Joi.string().required(), }); module.exports = { pushInputType, };