blob: c6c5e13098b699b7a3a9fc48d0e85faf434b9e14 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
'use strict'
const podsReqValidators = require('./pods')
const remoteReqValidators = require('./remote')
const videosReqValidators = require('./videos')
const reqValidators = {
pods: podsReqValidators,
remote: remoteReqValidators,
videos: videosReqValidators
}
// ---------------------------------------------------------------------------
module.exports = reqValidators
|