joyent-portal/spikes/metrics-service/http2/src/routes/home.js

12 lines
217 B
JavaScript
Raw Normal View History

2016-11-04 19:09:58 +02:00
const path = require('path');
module.exports = (server) => {
server.route({
method: 'GET',
path: '/',
handler: (request, reply) => {
reply.file(path.join(__dirname, 'index.html'));
}
});
};