10 lines
153 B
JavaScript
10 lines
153 B
JavaScript
|
|
const Joi = require('joi');
|
||
|
|
|
||
|
|
const pushInputType = Joi.object().keys({
|
||
|
|
token: Joi.string().required(),
|
||
|
|
});
|
||
|
|
|
||
|
|
module.exports = {
|
||
|
|
pushInputType,
|
||
|
|
};
|