aboutsummaryrefslogtreecommitdiffhomepage
path: root/routes/api/v1/index.js
blob: 9a4ec84384244675ebbee86c809a020ce8131e78 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
;(function () {
  'use strict'

  var api = {}
  api.videos = require('./videos')
  api.remoteVideos = require('./remoteVideos')
  api.pods = require('./pods')

  module.exports = api
})()