Skip to content

Instantly share code, notes, and snippets.

@nikosantis
Created April 28, 2020 22:44
Show Gist options
  • Save nikosantis/6e6cb5a2413ecc67b0c3be652a987e14 to your computer and use it in GitHub Desktop.
Save nikosantis/6e6cb5a2413ecc67b0c3be652a987e14 to your computer and use it in GitHub Desktop.
const joi = require('@hapi/joi')
const taskSchema = {
name: joi.string().required(),
description: joi.string().required()
}
module.exports = {
taskSchema
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment