flocore-node/config/routes.js
Matias Alejo Garcia 1c96756743 getblock working!
2014-01-06 19:02:33 -03:00

15 lines
272 B
JavaScript

'use strict';
module.exports = function(app) {
//Home route
var index = require('../app/controllers/index');
app.get('/', index.render);
//Block routes
var blocks = require('model/app/controllers/blocks');
app.get('/block/:block_hash', blocks.show);
};