bitcore-node-zcash/config/routes.js

10 lines
149 B
JavaScript
Raw Normal View History

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