]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - controllers/api/v1/index.js
Infile code reorganization
[github/Chocobozzz/PeerTube.git] / controllers / api / v1 / index.js
CommitLineData
8c308c2b
C
1;(function () {
2 'use strict'
3
e85782f7 4 var express = require('express')
c45f7f84 5
e85782f7 6 var router = express.Router()
8c308c2b 7
e85782f7 8 router.use('/pods', require('./pods'))
c45f7f84
C
9 router.use('/remotevideos', require('./remoteVideos'))
10 router.use('/videos', require('./videos'))
11
12 // ---------------------------------------------------------------------------
e85782f7
C
13
14 module.exports = router
8c308c2b 15})()