Skip to content

Instantly share code, notes, and snippets.

@cuperman
Created October 28, 2017 23:49
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 cuperman/8b5bef73923dae5af7ec29798468d1db to your computer and use it in GitHub Desktop.
Save cuperman/8b5bef73923dae5af7ec29798468d1db to your computer and use it in GitHub Desktop.
'use strict';
exports.handler = (event, context, callback) => {
callback(null, {
statusCode: 200,
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify({
event: event,
context: context
})
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment