Fix lint error

This commit is contained in:
Berkeley Martinez
2015-12-06 22:42:52 -08:00
parent 5c2bdd974a
commit fe8fe0ff0d

View File

@ -36,7 +36,10 @@ module.exports = function(app) {
router.get('/stories', showTestimonials); router.get('/stories', showTestimonials);
router.get('/all-stories', showAllTestimonials); router.get('/all-stories', showAllTestimonials);
router.get('/links', showLinks); router.get('/links', showLinks);
router.get('/the-fastest-web-page-on-the-internet', theFastestWebPageOnTheInternet); router.get(
'/the-fastest-web-page-on-the-internet',
theFastestWebPageOnTheInternet
);
app.use(router); app.use(router);