12 lines
231 B
JavaScript
12 lines
231 B
JavaScript
|
'use strict'
|
||
|
|
||
|
const remoteVideosValidators = require('./videos')
|
||
|
|
||
|
const validators = {
|
||
|
videos: remoteVideosValidators
|
||
|
}
|
||
|
|
||
|
// ---------------------------------------------------------------------------
|
||
|
|
||
|
module.exports = validators
|