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.

health.js 186B

12345678910
  1. 'use strict'
  2. const Joi = require('joi')
  3. const stats = Joi.object({
  4. date: Joi.string().required(),
  5. users: Joi.number().required(),
  6. }).label('stats')
  7. module.exports = { stats }