diff options
Diffstat (limited to 'app.js')
-rw-r--r-- | app.js | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -6,6 +6,7 @@ const bodyParser = require('body-parser') const routes = require('./routes/index') const meetingpointProxy = require('./routes/meetingpointProxy') +const getUserIndex = require('./routes/getUserIndex') const app = express() @@ -21,6 +22,7 @@ app.use(express.static(path.join(__dirname, 'public'))) app.use('/', routes) app.use('/meetingpointProxy', meetingpointProxy) +app.use('/getUserIndex', getUserIndex) // catch 404 and forward to error handler app.use(function (req, res, next) { |