]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - server/controllers/index.js
Server: transaction serializable for videos
[github/Chocobozzz/PeerTube.git] / server / controllers / index.js
index 6a3f3f98f42172c90650f604b712a02b1e8024df..c9ca297ef59f71d41e4c513b16103a4944e35535 100644 (file)
@@ -1,7 +1,11 @@
 'use strict'
 
 const apiController = require('./api/')
+const clientController = require('./client')
+const staticController = require('./static')
 
 module.exports = {
-  api: apiController
+  api: apiController,
+  client: clientController,
+  static: staticController
 }