Skip to content

Instantly share code, notes, and snippets.

@sdomagala
Last active March 10, 2019 18:27
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 sdomagala/2bb0a19be376949cb1c51b518fd80fce to your computer and use it in GitHub Desktop.
Save sdomagala/2bb0a19be376949cb1c51b518fd80fce to your computer and use it in GitHub Desktop.
'use strict';
module.exports.handler = (event, context, cb) => {
return cb(null, {
statusCode: 200,
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify({
status: 'OK'
})
})
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment