Skip to content

Commit

Permalink
linting fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
GeorgeGoodall committed Dec 4, 2023
1 parent 6bf4e91 commit 736e86c
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,8 @@ app.use((err, req, res, next) => {
})

app.get('/health', (req, res) => {
logger.info('healthcheck');
res.status(200).json({applicationHealth: 'ok'})
logger.info('healthcheck')
res.status(200).json({ applicationHealth: 'ok' })
})

// file not found handler
Expand All @@ -97,4 +97,3 @@ app.use((req, res, next) => {
app.listen(config.port, () => {
logger.info('App listening on http://localhost::port', { port: config.port })
})

0 comments on commit 736e86c

Please sign in to comment.