]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - middlewares/reqValidators/index.js
Infile code reorganization
[github/Chocobozzz/PeerTube.git] / middlewares / reqValidators / index.js
1 ;(function () {
2 'use strict'
3
4 var reqValidators = {
5 videos: require('./videos'),
6 pods: require('./pods'),
7 remote: require('./remote')
8 }
9
10 // ---------------------------------------------------------------------------
11
12 module.exports = reqValidators
13 })()