Skip to content

Instantly share code, notes, and snippets.

@nkhil
Created July 23, 2020 16:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nkhil/d945ee1881e9fbccb1cb5445e3420caa to your computer and use it in GitHub Desktop.
Save nkhil/d945ee1881e9fbccb1cb5445e3420caa to your computer and use it in GitHub Desktop.
// ./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