aboutsummaryrefslogtreecommitdiffstats
path: root/routes/index.js
blob: 20333b5ae9c939d45efe80734d395a8180de1faf (plain)
1
2
3
4
5
6
7
8
9
module.exports = function(app) {
	var index = require('./home')
	  , character_images = require('./character-images')
	  , character_chosen_dialog = require('./character-chosen-dialog');
	
	app.get('/', index);
	app.get('/character-images/:series_id', character_images);
	app.get('/character-chosen/:success', character_chosen_dialog);
};