'use strict'; const master = require('./templates/master.marko'); module.exports = [ [ '/', 'get', function (req, res, next) { res.template = master; next(); } ] ].concat( require('./services/geolets/routes') );