You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
| 12345678910111213 |
- 'use strict'
-
- const Joi = require('joi')
-
- const userAuth = Joi.object({
- user_email: Joi.string(),
- created_at: Joi.date(),
- token: Joi.binary().allow(null)
- }).label('user_auth')
-
- module.exports = {
- userAuth
- }
|