Created
July 23, 2020 16:05
-
-
Save nkhil/d945ee1881e9fbccb1cb5445e3420caa to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ./src/handlers/healthcheck.js | |
'use strict' | |
function ping(_, res) { | |
res.status(200).json({ message: 'OK' }); | |
} | |
module.exports = { | |
ping, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment