1
0
Fork 0
mirror of https://github.com/Chocobozzz/PeerTube.git synced 2025-10-06 03:50:26 +02:00
Peertube/routes/index.js
2015-12-14 22:13:03 +01:00

12 lines
214 B
JavaScript

;(function () {
'use strict'
var constants = require('../src/constants')
var routes = {
api: require('./api/' + constants.API_VERSION),
views: require('./views')
}
module.exports = routes
})()