]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/controllers/index.js
Server: do not break remote videos processing on error
[github/Chocobozzz/PeerTube.git] / server / controllers / index.js
CommitLineData
9f10b292 1'use strict'
8c308c2b 2
f253b1c1 3const apiController = require('./api/')
830bcd0f 4const clientController = require('./client')
79530164 5const staticController = require('./static')
a030a9b2 6
9f10b292 7module.exports = {
830bcd0f 8 api: apiController,
79530164
C
9 client: clientController,
10 static: staticController
9f10b292 11}