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.

api.js 202B

123456789101112
  1. 'use strict'
  2. const Joi = require('joi')
  3. const singleApiResponse = Joi.object({
  4. ok: Joi.bool(),
  5. handler: Joi.string(),
  6. }).label('api_single')
  7. module.exports = {
  8. single: singleApiResponse
  9. }