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