aboutsummaryrefslogtreecommitdiff
path: root/app.js
diff options
context:
space:
mode:
authorNoah Loomans <noahloomans@gmail.com>2016-09-07 11:37:07 +0200
committerNoah Loomans <noahloomans@gmail.com>2016-09-07 11:37:07 +0200
commit93af695f08ba0cd76210a6f965c2424b1c0745f0 (patch)
treeccb7f5dba21b4bdd6cad688f302d3389913ddd10 /app.js
parent57e142dc6f5dfc6c6394d04ff4e807bb8288a417 (diff)
add made by field
Diffstat (limited to 'app.js')
-rw-r--r--app.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/app.js b/app.js
index a0d0071..af0092a 100644
--- a/app.js
+++ b/app.js
@@ -7,6 +7,7 @@ const bodyParser = require('body-parser')
const routes = require('./routes/index')
const meetingpointProxy = require('./routes/meetingpointProxy')
const getUserIndex = require('./routes/getUserIndex')
+const hello = require('./routes/hello')
const app = express()
@@ -23,6 +24,7 @@ app.use(express.static(path.join(__dirname, 'public')))
app.use('/', routes)
app.use('/meetingpointProxy', meetingpointProxy)
app.use('/getUserIndex', getUserIndex)
+app.use('/hello', hello)
// catch 404 and forward to error handler
app.use(function (req, res, next) {