flosight-api/config/routes.js
2014-01-06 14:37:32 -03:00

10 lines
149 B
JavaScript

'use strict';
module.exports = function(app) {
//Home route
var index = require('../app/controllers/index');
app.get('/', index.render);
};