diff options
| -rw-r--r-- | routes.js | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -6,8 +6,8 @@ var fetchgif = require('./fetchgif'); module.exports = function(app) { app.all('/', index); - app.post('/1/dropgif/:song_name/', dropgif); - app.get('/1/song/:song_name/', song); - app.get('/:song_name/', play); + app.post('/1/dropgif/:song_name', dropgif); + app.get('/1/song/:song_name', song); + app.get('/:song_name', play); app.get('/1/fetchgif', fetchgif); } |
