aboutsummaryrefslogtreecommitdiffhomepage
path: root/middlewares/reqValidators/index.js
blob: 34d34013c25af88e562bc70fc64cbe437adbd0e2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
;(function () {
  'use strict'

  var reqValidators = {
    videos: require('./videos'),
    pods: require('./pods'),
    remote: require('./remote')
  }

  // ---------------------------------------------------------------------------

  module.exports = reqValidators
})()