diff --git a/examples/hello-world.js b/examples/hello-world.js index 17441a5..f017862 100644 --- a/examples/hello-world.js +++ b/examples/hello-world.js @@ -1,9 +1,7 @@ var bogart = require('../lib/bogart'); var router = bogart.router(); - router.get('/', function(req) { - console.log("ROOT ROUTE"); return 'Hello Root'; });