aboutsummaryrefslogtreecommitdiff
path: root/app.js
diff options
context:
space:
mode:
Diffstat (limited to 'app.js')
-rw-r--r--app.js2
1 files changed, 0 insertions, 2 deletions
diff --git a/app.js b/app.js
index 4461152..934429d 100644
--- a/app.js
+++ b/app.js
@@ -8,7 +8,6 @@ const compression = require('compression')
const routes = require('./routes/index')
const meetingpointProxy = require('./routes/meetingpointProxy')
const manifest = require('./routes/manifest')
-const hello = require('./routes/hello')
const app = express()
@@ -28,7 +27,6 @@ app.use(express.static(path.join(__dirname, 'public')))
app.use('/', routes)
app.use('/meetingpointProxy', meetingpointProxy)
-app.use('/hello', hello)
// catch 404 and forward to error handler
app.use(function (req, res, next) {