genediazjr/hapitodo

View on GitHub
server/route/indexRoute.js

Summary

Maintainability
A
0 mins
Test Coverage
'use strict';


module.exports = [
    {
        path: '/',
        method: 'get',
        handler: function (request, reply) {

            return reply.file('index.html');
        }
    }
];