diff options
author | Chocobozzz <florian.bigard@gmail.com> | 2016-02-07 11:23:23 +0100 |
---|---|---|
committer | Chocobozzz <florian.bigard@gmail.com> | 2016-02-07 11:23:23 +0100 |
commit | 9f10b2928df655c3672d9607e864e667d4bc903a (patch) | |
tree | 7743911b974b3a7fb0d4c7cec2a723942466b7f1 /controllers/index.js | |
parent | d7c01e7793d813d804a3b5716d8288f9dcf71a16 (diff) | |
download | PeerTube-9f10b2928df655c3672d9607e864e667d4bc903a.tar.gz PeerTube-9f10b2928df655c3672d9607e864e667d4bc903a.tar.zst PeerTube-9f10b2928df655c3672d9607e864e667d4bc903a.zip |
Remove useless anonymous functions of files
Diffstat (limited to 'controllers/index.js')
-rw-r--r-- | controllers/index.js | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/controllers/index.js b/controllers/index.js index 770d08248..35a0191c5 100644 --- a/controllers/index.js +++ b/controllers/index.js | |||
@@ -1,10 +1,8 @@ | |||
1 | ;(function () { | 1 | 'use strict' |
2 | 'use strict' | ||
3 | 2 | ||
4 | var constants = require('../initializers/constants') | 3 | var constants = require('../initializers/constants') |
5 | 4 | ||
6 | module.exports = { | 5 | module.exports = { |
7 | api: require('./api/' + constants.API_VERSION), | 6 | api: require('./api/' + constants.API_VERSION), |
8 | views: require('./views') | 7 | views: require('./views') |
9 | } | 8 | } |
10 | })() | ||