insight-ui-zcash/config/routes.js

10 lines
155 B
JavaScript
Raw Normal View History

2014-01-06 08:33:58 -08:00
'use strict';
module.exports = function(app) {
//Home route
var index = require('../app/controllers/index');
app.get('/', index.render);
};