module.exports = (app) => { const view = require('../controllers/view.controller'); app.route('/view/:recipeId') .get(view.findOne); };