1
0
Fork 0
mirror of https://github.com/Chocobozzz/PeerTube.git synced 2025-10-04 02:09:37 +02:00

Use const/let now we use node 4.2

This commit is contained in:
Chocobozzz 2016-03-16 22:29:27 +01:00
parent 5101105ef9
commit f0f5567b69
36 changed files with 424 additions and 432 deletions

View file

@ -1,8 +1,8 @@
'use strict'
var constants = require('../initializers/constants')
const constants = require('../initializers/constants')
var apiController = require('./api/' + constants.API_VERSION)
const apiController = require('./api/' + constants.API_VERSION)
module.exports = {
api: apiController