index.js 183 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 var file = require('./file/file-controller'); var util = require('./public-util-controller'); module.exports = function (app) { app.use('/file', file); app.use('/util', util); };